Files
Backend-Api/CompanyManagment.App.Contracts/Reward/RewardsGroupedByEmployeeViewModel.cs
2025-04-13 22:23:25 +03:30

21 lines
636 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Reward;
public class RewardsGroupedByEmployeeViewModel
{
public string EmployeeName { get; set; }
public long EmployeeId { get; set; }
public List<RewardsGroupedByEmployeeViewModelItems> Rewards { get; set; }
public string TotalAmount { get; set; }
}
public class RewardsGroupedByEmployeeViewModelItems
{
public long Id { get; set; }
public string PersonnelCode { get; set; }
public string Title { get; set; }
public string Amount { get; set; }
public string Description { get; set; }
public string GrantDate { get; set; }
}