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

18 lines
442 B
C#

using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Primitives
{
public class NamedAreaPoint : INamedAreaPoint
{
public string Name { get; set; }
public IPoint2D Point { get; set; }
public double Area { get; set; }
}
}