13 lines
390 B
C#
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; }
|
|
} |