RobotNet/RobotNet.Script.Shares/Dashboard/TaktTimeMissionDto.cs
2025-10-15 15:15:53 +07:00

15 lines
392 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.Script.Shares.Dashboard;
public class TaktTimeMissionDto
{
public string Label { get; set; } = string.Empty;
[Range(0, double.MaxValue)]
public double Min { get; set; }
[Range(0, double.MaxValue)]
public double Max { get; set; }
[Range(0, double.MaxValue)]
public double Average { get; set; }
}