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

22 lines
638 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 EmployeeForEditInsuranceListSearchModel
{
public long InsuranceId { get; set; }
public long WorkshopId { get; set; }
public string Year { get; set; }
public string Month { get; set; }
public string Population { get; set; }
public bool FixedSalary { get; set; }
public string TypeOfInsuranceSendWorkshop { get; set; }
public long? InsuranceJobId { get; set; }
public List<long> WorkshopIds { get; set; }
}