8 lines
283 B
C#
8 lines
283 B
C#
namespace PARR.Domain.DTOs.RobotMetrics
|
|
{
|
|
/// <summary>
|
|
/// Статистика по Робот Сатусам, на графике
|
|
/// </summary>
|
|
public record RobotStatusChartPoint(DateTimeOffset Timestamp, int Wait, int InProgress, int Error, int Complete);
|
|
}
|