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