32 lines
813 B
C#
32 lines
813 B
C#
namespace RobotNet.MapShares.Dtos;
|
|
|
|
#nullable disable
|
|
|
|
public class ElementModelDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid MapId { get; set; }
|
|
public string Name { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
public int Image1Width { get; set; }
|
|
public int Image1Height { get; set; }
|
|
public int Image2Width { get; set; }
|
|
public int Image2Height { get; set; }
|
|
public string Content { get; set; }
|
|
}
|
|
|
|
public class ElementModelCreateModel
|
|
{
|
|
public string Name { get; set; }
|
|
public Guid MapId { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
}
|
|
|
|
public class ElementModelUpdateModel : ElementModelCreateModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Content { get; set; }
|
|
}
|