Files
StructureHelper/StructureHelperLogics/Data/Shapes/IPoint.cs

8 lines
134 B
C#

namespace StructureHelperLogics.Data.Shapes
{
public interface IPoint : IShape
{
double Area { get; set; }
}
}