9 lines
158 B
C#
9 lines
158 B
C#
namespace StructureHelperCommon.Models.Shapes
|
|
{
|
|
public interface ICenterShape
|
|
{
|
|
ICenter Center {get;}
|
|
IShape Shape { get;}
|
|
}
|
|
}
|