Files
StructureHelper/StructureHelperCommon/Models/Shapes/PolygonShape.cs
2025-10-19 17:37:17 +05:00

17 lines
332 B
C#

using System;
using System.Collections.Generic;
namespace StructureHelperCommon.Models.Shapes
{
public class PolygonShape : IPolygonShape
{
public Guid Id { get; }
public List<IPolygonSegment> Segments { get; } = [];
public PolygonShape(Guid id)
{
Id = id;
}
}
}