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

30 lines
1020 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 InsuranceListViewModel
{
public long Id { get; set; }
public string Year { get; set; }
public int YearInt { get; set; }
public string Month { get; set; }
public string MonthName { get; set; }
public int MonthInt { get; set; }
public string MonthNumber { get; set; }
public string WorkShopCode { get; set; }
public string WorkShopName { get; set; }
public string TypeOfInsuranceSend { get; set; }
public bool FixedSalary { get; set; }
public bool ConfirmSentlist { get; set; }
public string StrFixedSalary { get; set; }
public string EmployerName { get; set; }
public string Branch { get; set; }
public string City { get; set; }
public long WorkShopId { get; set; }
public string IsBlockCantracingParty { get; set; }
public long EmployerId { get; set; }
}