update mapmanager pages
This commit is contained in:
13
RobotApp.Common.Shares/Dtos/MapDto.cs
Normal file
13
RobotApp.Common.Shares/Dtos/MapDto.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user