feat(api): RobotHistoryController - сохранение истории работы робота
This commit is contained in:
20
PARR.API/Contracts/V1/Responses/RobotHistoryResponse.cs
Normal file
20
PARR.API/Contracts/V1/Responses/RobotHistoryResponse.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace PARR.API.Contracts.V1.Responses
|
||||
{
|
||||
public class RobotHistoryResponse
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public DateTimeOffset Date { get; set; }
|
||||
|
||||
public string? RobotMessage { get; set; }
|
||||
|
||||
public string? EsppMessage { get; set; }
|
||||
|
||||
public int TaskStatusCode { get; set; }
|
||||
|
||||
public Guid TaskId { get; set; }
|
||||
|
||||
public RobotHistoryLevelResponse? Level { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user