Files
StructureHelper/StructureHelperCommon/Models/Shapes/IPointShape.cs
2024-08-12 12:46:40 +05:00

14 lines
286 B
C#

namespace StructureHelperCommon.Models.Shapes
{
/// <summary>
/// Geomentry primitive of point
/// </summary>
public interface IPointShape : IShape
{
/// <summary>
/// Area of point
/// </summary>
double Area { get; set; }
}
}