Files
StructureHelper/StructureHelperCommon/Models/Shapes/PointShape.cs
2024-10-13 17:31:18 +05:00

21 lines
358 B
C#

using System;
namespace StructureHelperCommon.Models.Shapes
{
public class PointShape : IPointShape
{
public Guid Id { get; }
public double Area { get; set; }
public PointShape(Guid id)
{
Id = id;
}
public PointShape() : this (Guid.NewGuid())
{
}
}
}