18 lines
400 B
C#
18 lines
400 B
C#
namespace PARR.Domain.DTOs.RobotSnapshotDTO
|
|
{
|
|
public record RobotSnapshotItem
|
|
{
|
|
public Guid Id { get; init; }
|
|
|
|
public DateTimeOffset DateCreated { get; init; }
|
|
|
|
public int TemplateRobotsCount { get; init; }
|
|
|
|
public int ScheduleRobotsCount { get; init; }
|
|
|
|
public int MaxRobots { get; init; }
|
|
|
|
public required string Ip { get; init; }
|
|
}
|
|
}
|