feat(api): В респонс задания добавлено поле ScheduleTypeCode. Заготовка респонса для шаблона с включенным заданием.

This commit is contained in:
Mikhail Trubnikov
2023-10-12 09:10:10 +10:00
parent 72e2f76b1a
commit 494441dbe6
4 changed files with 55 additions and 0 deletions

View File

@@ -36,6 +36,11 @@
/// </summary>
public required string ScheduleType { get; set; }
/// <summary>
/// Код задания
/// </summary>
public int ScheduleTypeCode { get; set; }
public List<RobotTaskScheduleSchResponse>? Schedule { get; set; }
}