19 lines
562 B
C#
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; }
|
|
|
|
} |