Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeDocuments/CheckerDocumentsOperation.cs
2025-02-18 16:16:33 +03:30

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; } = [];
}