feat(api): RobotHistoryController - сохранение истории работы робота
This commit is contained in:
15
PARR.API/Contracts/V1/Requests/RobotHistoryRequest.cs
Normal file
15
PARR.API/Contracts/V1/Requests/RobotHistoryRequest.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using PARR.DAL.Contracts;
|
||||
|
||||
namespace PARR.API.Contracts.V1.Requests
|
||||
{
|
||||
public class RobotHistoryRequest
|
||||
{
|
||||
public RobotHistoryLevelEnum HistoryLevel { get; set; }
|
||||
|
||||
public string? RobotMessage { get; set; }
|
||||
|
||||
public string? EsppMessage { get; set; }
|
||||
|
||||
public Guid TaskId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user