19 lines
665 B
C#
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; }
|
|
}
|