Files
StructureHelper/StructureHelperCommon/Models/Shapes/ICenterShape.cs
2022-11-27 17:04:34 +05:00

9 lines
159 B
C#

namespace StructureHelperCommon.Models.Shapes
{
public interface ICenterShape
{
IPoint2D Center {get;}
IShape Shape { get;}
}
}