20 lines
615 B
C#
20 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.LeftWork;
|
|
|
|
public class LeftWorkGroup
|
|
{
|
|
public string WorkshopName { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public List<LeftWorkViewModel> LeftWorkViewModels { 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; }
|
|
} |