feat(api): Выдача заданий агенту.

This commit is contained in:
Mikhail Trubnikov
2023-10-17 16:59:53 +10:00
parent 26bd0a9a6b
commit a1f19c7ac8
12 changed files with 3126 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
namespace PARR.API.Contracts.V1.Responses
{
public class TemplateAgentResponse
{
public bool? IsAgent { get; set; }
public string? Name { get; set; }
public string? Script { get; set; }
public int? TimeOutSec { get; set; }
}
}