feat(api): JobGroupController добавлена выдача расписания и количество связанных Job

This commit is contained in:
Mikhail Kuznetsov
2025-09-04 14:51:51 +10:00
parent 0793c169f9
commit c9dcdedeca
9 changed files with 214 additions and 79 deletions

View File

@@ -25,5 +25,14 @@
public int? AgentTimeOutSec { get; set; }
public string? AgentScript { get; set; }
public List<EsppSchValueRequest> Schedule { get; set; } = new List<EsppSchValueRequest>();
}
public class EsppSchValueRequest
{
public Guid TypeValueId { get; set; }
public Guid TypeConfigId { get; set; }
}
}