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

20 lines
621 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Fine;
public class FinesGroupedByDateViewModel
{
public string MonthFa { get; set; }
public string YearFa { get; set; }
public List<FinesGroupedByDateViewModelItems> Fines { get; set; }
public string TotalAmount { get; set; }
}
public class FinesGroupedByDateViewModelItems
{
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 FineDateTimeFa { get; set; }
}