Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceList/EmployeeForCreateInsuranceListSearchModel.cs
2024-07-05 21:36:15 +03:30

20 lines
557 B
C#

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<long> WorkshopIds { get; set; }
}