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

18 lines
610 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.PersonnleCode;
namespace CompanyManagment.App.Contracts.LeftWorkInsurance;
public class InformationLeftworkInsurance
{
public string EmployeeFullName { get; set; }
public long EmployeeId { get; set; }
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public List<PersonnelCodeViewModel> PersonnelCodeList { get; set; }
public List<LeftWorkInsuranceViewModel> ItemLeftworkInsuranceList { get; set; }
}