feat(api): RobotHistoryController - сохранение истории работы робота

This commit is contained in:
Mikhail Trubnikov
2023-10-06 13:58:10 +10:00
parent d334e46780
commit 9060db1fe4
14 changed files with 2228 additions and 187 deletions

View File

@@ -1,6 +1,6 @@
namespace PARR.API.Contracts.V1.Responses
{
public class RobotTemplateHistoryResponse
public class RobotHistoryResponse
{
public Guid Id { get; set; }
@@ -10,13 +10,9 @@
public string? EsppMessage { get; set; }
public int TemplateStatusCode { get; set; }
public int TaskStatusCode { get; set; }
public Guid TemplateId { get; set; }
public string TemplateName { get; set; } = string.Empty;
public Guid IdSeries { get; set; }
public Guid TaskId { get; set; }
public RobotHistoryLevelResponse? Level { get; set; }