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

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; }
}