RobotApp/RobotApp.Common.Shares/Dtos/MapDto.cs
2025-09-25 21:03:10 +07:00

14 lines
413 B
C#

namespace RobotApp.Common.Shares.Dtos;
public class MapDto
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public double Width { get; set; }
public double Height { get; set; }
public double Resolution { get; set; }
public double OriginX { get; set; }
public double OriginY { get; set; }
}