Files
StructureHelper/StructureHelperLogics/NdmCalculations/Primitives/INamedAreaPoint.cs
2024-03-16 21:46:24 +05:00

11 lines
262 B
C#

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