Files
StructureHelper/StructureHelperLogics/NdmCalculations/Primitives/INamedAreaPoint.cs
Evgeny Redikultsev c31e56869c Add polygon shape
2025-09-07 08:12:07 +05:00

11 lines
263 B
C#

using StructureHelperCommon.Models.Shapes;
namespace StructureHelperLogics.NdmCalculations.Primitives
{
public interface INamedAreaPoint
{
double Area { get; set; }
string Name { get; set; }
IPoint2D Point { get; set; }
}
}