13 lines
209 B
C#
13 lines
209 B
C#
namespace AipsRT.Model.Whiteboard.Structs;
|
|
|
|
public struct Position
|
|
{
|
|
public int X { get; set; }
|
|
public int Y { get; set; }
|
|
|
|
public Position(int x, int y)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
} |