feat(api): в респонс шаблона добавлены поля с расписанием

This commit is contained in:
Mikhail Trubnikov
2023-11-27 16:42:15 +10:00
parent 2bdec66fd4
commit 8f385ed2d2
5 changed files with 22 additions and 4 deletions

View File

@@ -3,6 +3,12 @@
// Вот это тот самый респонс
public class EsppScheduleResponse
{
public DateTimeOffset NextRun { get; set; }
public DateTimeOffset? LastRun { get; set; }
public string Timezone { get; set; } = string.Empty;
public EsppScheduleTypeScheduleResponse? TypeSchedule { get; set; }
public List<EsppScheduleValResponse>? Values { get; set; }