21 lines
442 B
C#
21 lines
442 B
C#
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; }
|
|
|
|
}
|
|
}
|