Files
Backend-Api/CompanyManagment.App.Contracts/Workshop/ContractAndCheckoutStatusYearlyViewModel.cs
2024-07-05 21:36:15 +03:30

19 lines
665 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Workshop;
public class ContractAndCheckoutStatusYearlyViewModel
{
public List<string> YearList { get; set; }
public string Year { get; set; }
public string PersonName { get; set; }
public string WorkshopName { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public ContractStatusGroup ContractStatusGroupViewModel { get; set; }
public List<ContractAndCheckoutStatusYearlyViewModel> ContractAndCheckoutStatusYearlyList { get; set; }
}