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