🚚 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
{
public class Point
{
public int X { get; private set; }
public int Y { get; private set; }
public Point(int x, int y)
{
X = x; Y = y;
}
}
}
namespace Tests
{
public class Point
{
public int X { get; private set; }
public int Y { get; private set; }
public Point(int x, int y)
{
X = x; Y = y;
}
}
}
Loading…
Cancel
Save