Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceList/EditInsuranceList.cs
2025-06-02 22:20:04 +03:30

19 lines
562 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.LeftWork;
namespace CompanyManagment.App.Contracts.InsuranceList;
public class EditInsuranceList:CreateInsuranceList
{
public long Id { get; set; }
public string TypeOfInsuranceSend { get; set; }
public bool FixedSalary { get; set; }
public string Population { get; set; }
public long? InsuranceJobId { get; set; }
public List<LeftWorkViewModel> LeftWorkEmployees { get; set; }
}