24 lines
573 B
C#
24 lines
573 B
C#
using PARR.Domain.DTOs.Shared;
|
|
|
|
namespace PARR.Domain.DTOs.RobotTaskRobotStatus
|
|
{
|
|
public record RobotConfigurationResult
|
|
{
|
|
public Guid Id { get; init; }
|
|
|
|
public DateTimeOffset DateCreated { get; init; }
|
|
|
|
public Guid TemplateId { get; init; }
|
|
|
|
public RobotDto? Robot { get; init; }
|
|
|
|
public RobotTaskStatusDto? TaskStatus { get; init; }
|
|
|
|
public RobotStatusDto? RobotStatus { get; init; }
|
|
|
|
public int AttemptsNumber { get; init; }
|
|
|
|
public DateTimeOffset? LastRobotStatusUpdated { get; init; }
|
|
}
|
|
}
|