feat(api): оптимизированы поля запроса JobGroup

This commit is contained in:
Mikhail Kuznetsov
2025-09-05 10:33:52 +10:00
parent fdfa0d5e29
commit 0a7e18fcd7
2 changed files with 17 additions and 17 deletions

View File

@@ -16,15 +16,15 @@
public DateTimeOffset ReferenceDate { get; set; }
public bool IsAutoDistributionEnabled { get; set; }
//public bool IsAutoDistributionEnabled { get; set; }
public bool IsAgent { get; set; }
//public bool IsAgent { get; set; }
public string? AgentName { get; set; }
//public string? AgentName { get; set; }
public int? AgentTimeOutSec { get; set; }
//public int? AgentTimeOutSec { get; set; }
public string? AgentScript { get; set; }
//public string? AgentScript { get; set; }
public List<EsppSchValueRequest> Schedule { get; set; } = new List<EsppSchValueRequest>();
}