21 lines
704 B
C#
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; }
|
|
}
|