24 lines
827 B
C#
24 lines
827 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CompanyManagment.App.Contracts.Job;
|
|
|
|
namespace CompanyManagment.App.Contracts.LeftWorkInsurance;
|
|
|
|
public class LeftWorkInsuranceGroup
|
|
{
|
|
public string WorkshopName { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public List<LeftWorkInsuranceViewModel> LeftworkInsuranceViewModels{ get; set; }
|
|
public int IsActiveWorkshop { get; set; }
|
|
public long? PersonnelCode { get; set; }
|
|
public long JobId { get; set; }
|
|
public bool IncludeStatus { get; set; }
|
|
public bool HasPersonelCode { get; set; }
|
|
public List<JobViewModel> JobList { get; set; }
|
|
//public string JobName { get; set; }
|
|
//public string JobCode { get; set; }
|
|
} |