using StructureHelperCommon.Infrastructures.Interfaces; using System.Collections.Generic; namespace StructureHelperCommon.Models.Shapes { /// /// Implements properties of polygon with diferent types of segment /// public interface IPolygonShape : ISaveable { /// /// Collection of sements of polygon /// List Segments { get; } } }