Изменен минимальный респонс /jobs/ip/ (согласовано с Пригода Д.В.)

This commit is contained in:
Mikhail Trubnikov
2023-07-26 10:09:25 +10:00
parent 3bb3266d10
commit 7e4466f938
6 changed files with 38 additions and 15 deletions

View File

@@ -6,7 +6,7 @@
public DateTimeOffset StartAt { get; set; }
public int FrequencyMinute { get; set; }
public required JobModeResponse JobMode { get; set; }
public required string ScriptName { get; set; }
public required string Script { get; set; }
}
public class JobGetAllResponse : JobBaseResponse
@@ -19,4 +19,11 @@
{
}
public class JobMinResponse
{
public DateTimeOffset StartAt { get; set; }
public required string Script { get; set; }
}
}