Files
Backend-Api/CompanyManagment.App.Contracts/Reward/MonthlyGroupedEmployeeRewardsViewModel.cs
2025-01-19 15:53:36 +03:30

13 lines
390 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Reward;
public class MonthlyGroupedEmployeeRewardsViewModel
{
public long EmployeeId { get; set; }
public string PersonnelCode { get; set; }
public string MonthFa { get; set; }
public string YearFa { get; set; }
public List<RewardViewModel> Rewards { get; set; }
public string MonthFaName { get; set; }
}