Add EllipsePrimitive to DTO Converter
This commit is contained in:
@@ -8,6 +8,17 @@ namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public class CircleShape : ICircleShape
|
||||
{
|
||||
public Guid Id { get; }
|
||||
public double Diameter { get; set; }
|
||||
public CircleShape(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public CircleShape() : this (Guid.NewGuid())
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user