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

19 lines
632 B
C#

namespace RobotApp.Common.Shares.Dtos;
#nullable disable
public record RobotSimulationConfigDto
{
public Guid Id { get; set; }
public bool EnableSimulation { get; set; }
public double SimulationMaxVelocity { get; set; }
public double SimulationMaxAngularVelocity { get; set; }
public double SimulationAcceleration { get; set; }
public double SimulationDeceleration { 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; }
}