Files
StructureHelper/StructureHelperLogics/Data/Shapes/ICenterShape.cs

9 lines
156 B
C#

namespace StructureHelperLogics.Data.Shapes
{
public interface ICenterShape
{
ICenter Center {get;}
IShape Shape { get;}
}
}