using System.Collections.Generic; namespace CompanyManagment.App.Contracts.Checkout; public class CreateCheckoutListViewModel { public long Id { get; set; } public long PersonnelCode { get; set; } public long EmployeeId { get; set; } public string ContractNo { get; set; } public string EmployerName { get; set; } public string WorkshopName { get; set; } public string EmployeeName { get; set; } public string ContractStart { get; set; } public string ContractEnd { get; set; } public string LeftWorkDate { get; set; } //public string NextMonthStart { get; set; } //public bool RedColor { get; set; } public bool LaterThanEnd { get; set; } public bool Extension { get; set; } public bool HasCheckout { get; set; } //public bool MoreThanOneMonth { get; set; } //public bool Waiting { get; set; } public string Description { get; set; } /// /// آیا پرسنل اجازه ایجاد قرارداد دارد /// public bool EmployeeHasCreateCheckout { get; set; } public bool HasWorkFlow { get; set; } public List CreateCheckoutList { get; set; } }