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