16 lines
464 B
C#
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; }
|
|
|
|
}
|
|
|