feat(api): Контроллер по управлению ScheduleEsppId. Получение задания для расписания.

This commit is contained in:
Mikhail Trubnikov
2023-10-11 15:28:37 +10:00
parent 8ebdcd6d8a
commit 72e2f76b1a
7 changed files with 141 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
namespace PARR.API.Contracts.V1.Requests
{
public class TemplateScheduleEsppIdRequest
{
/// <summary>
/// Идентификатор расписания ЕСПП
/// </summary>
public string ScheduleEsppId { get; set; } = string.Empty;
}
}