using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CompanyManagment.App.Contracts.Job; namespace CompanyManagment.App.Contracts.LeftWorkInsurance; public class LeftWorkInsuranceGroup { public string WorkshopName { get; set; } public long WorkshopId { get; set; } public long EmployeeId { get; set; } public List LeftworkInsuranceViewModels{ get; set; } public int IsActiveWorkshop { get; set; } public long? PersonnelCode { get; set; } public long JobId { get; set; } public bool IncludeStatus { get; set; } public bool HasPersonelCode { get; set; } public List JobList { get; set; } //public string JobName { get; set; } //public string JobCode { get; set; } }