🚚 Move Point to Tests root

pull/191/head
Alexis Drai 2 years ago
parent 32a58dd414
commit 27e90bfbd5

@ -1,13 +1,13 @@
namespace Tests.Model_UTs namespace Tests
{ {
public class Point public class Point
{ {
public int X { get; private set; } public int X { get; private set; }
public int Y { get; private set; } public int Y { get; private set; }
public Point(int x, int y) public Point(int x, int y)
{ {
X = x; Y = y; X = x; Y = y;
} }
} }
} }
Loading…
Cancel
Save