24 lines
733 B
C#
24 lines
733 B
C#
using System.Collections.Generic;
|
|
using System.Security.Cryptography;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace CompanyManagment.App.Contracts.Reward;
|
|
|
|
public class RewardsGroupedByDate
|
|
{
|
|
public string Month { get; set; }
|
|
public string Year { get; set; }
|
|
public List<RewardsGroupedByDateItems> Rewards { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
}
|
|
public class RewardsGroupedByDateItems
|
|
{
|
|
public long Id { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string Title { get; set; }
|
|
public string Amount { get; set; }
|
|
public string Description { get; set; }
|
|
public string GrantDateFa { get; set; }
|
|
}
|