RobotApp/RobotApp.Common.Shares/Dtos/RobotSafetyConfig.cs
Đăng Nguyễn 643a34a4b4 update
2025-10-28 17:28:46 +07:00

21 lines
704 B
C#

namespace RobotApp.Common.Shares.Dtos;
#nullable disable
public record RobotSafetyConfig
{
public Guid Id { get; set; }
public double SafetySpeedVerySlow { get; set; }
public double SafetySpeedSlow { get; set; }
public double SafetySpeedNormal { get; set; }
public double SafetySpeedMedium { get; set; }
public double SafetySpeedOptimal { get; set; }
public double SafetySpeedFast { get; set; }
public double SafetySpeedVeryFast { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public bool IsActive { get; set; } = true;
public string ConfigName { get; set; }
public string Description { get; set; }
}