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

24 lines
821 B
C#

using System;
namespace CompanyManagment.App.Contracts.LeftWorkInsurance;
public class LeftWorkInsuranceViewModel
{
public long Id { get; set; }
public string LeftWorkDate { get; set; }
public string StartWorkDate { get; set; }
public DateTime? LeftWorkDateGr { get; set; }
public DateTime StartWorkDateGr { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string EmployeeFullName { get; set; }
public string WorkshopName { get; set; }
public string EndWorkDate { get; set; }
public bool IsActiveWorkshop { get; set; }
public long JobId { get; set; }
public string JobName { get; set; }
public string JobCode { get; set; }
public bool IncludeStatus { get; set; }
public bool HasInsuranceList { get; set; }
}