using System; namespace CompanyManagment.App.Contracts.LeftWorkInsurance; public class LeftWorkInsuranceViewModel { public long Id { get; set; } public string LeftWorkDate { get; set; } public string StartWorkDate { get; set; } public DateTime? LeftWorkDateGr { get; set; } public DateTime StartWorkDateGr { get; set; } public long WorkshopId { get; set; } public long EmployeeId { get; set; } public string EmployeeFullName { get; set; } public string WorkshopName { get; set; } public string EndWorkDate { get; set; } public bool IsActiveWorkshop { get; set; } public long JobId { get; set; } public string JobName { get; set; } public string JobCode { get; set; } public bool IncludeStatus { get; set; } public bool HasInsuranceList { get; set; } }