20 lines
621 B
C#
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; }
|
|
} |