Files
StructureHelper/StructureHelperCommon/Models/Shapes/Point2D.cs
2022-11-27 17:04:34 +05:00

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; }
}
}