18 lines
610 B
C#
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; }
|
|
} |