using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CompanyManagment.App.Contracts.PersonnleCode; namespace CompanyManagment.App.Contracts.LeftWorkInsurance; public class InformationLeftworkInsurance { public string EmployeeFullName { get; set; } public long EmployeeId { get; set; } public long WorkshopId { get; set; } public string WorkshopName { get; set; } public List PersonnelCodeList { get; set; } public List ItemLeftworkInsuranceList { get; set; } }