update mapmanager pages

This commit is contained in:
Đăng Nguyễn
2025-09-25 21:03:10 +07:00
parent 0d97684f70
commit 4aed0da992
7 changed files with 216 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
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; }
}