11 lines
263 B
C#
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; }
|
|
}
|
|
} |