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

16 lines
464 B
C#

using System.Collections.Generic;
using CompanyManagment.App.Contracts.EmployeeInsurancListData;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace CompanyManagment.App.Contracts.Fine;
public class FinesGroupedViewModel
{
public List<FinesGroupedByDateViewModel> GroupedByDate { get; set; }
public List<FinesGroupedByEmployeeViewModel> GroupedByEmployee { get; set; }
public List<FineViewModel> FineListViewModels { get; set; }
}