using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CompanyManagment.App.Contracts.InsuranceList; public class EmployeeForCreateInsuranceListSearchModel { public string Year { get; set; } public string Month { get; set; } public string Population { get; set; } public bool FixedSalary { get; set; } public long? InsuranceJobId { get; set; } public string TypeOfInsuranceSendWorkshop { get; set; } public List WorkshopIds { get; set; } }