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

21 lines
602 B
C#

using RobotApp.Common.Shares.Enums;
namespace RobotApp.Common.Shares.Dtos;
#nullable disable
public record RobotConfigDto
{
public Guid Id { get; set; }
public NavigationType NavigationType { get; set; }
public double RadiusWheel { get; set; }
public double Width { get; set; }
public double Length { get; set; }
public double Height { 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; }
}