13 lines
338 B
C#
13 lines
338 B
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.EmployeeDocuments;
|
|
|
|
namespace CompanyManagment.Application;
|
|
|
|
public class CheckerDocumentsOperation
|
|
{
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public List<CheckerDocumentItemOperation> Operations { get; set; } = [];
|
|
|
|
|
|
} |