namespace PARR.API.Contracts.V1.Responses.Statistics { public record StatRobotStatusChartPoint { public DateTimeOffset Timestamp { get; init; } public int Wait { get; init; } public int InProgress { get; init; } public int Error { get; init; } public int Complete { get; init; } } }