12 lines
252 B
C#
12 lines
252 B
C#
namespace StructureHelperCommon.Models.Shapes
|
|
{
|
|
/// <inheritdoc />
|
|
public class Center : ICenter
|
|
{
|
|
/// <inheritdoc />
|
|
public double X { get; set; }
|
|
/// <inheritdoc />
|
|
public double Y { get; set; }
|
|
}
|
|
}
|