14 lines
413 B
C#
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; }
|
|
}
|