namespace speedLight.UI.Models; public class ScreenPoint { public ScreenPoint(int x, int y) { X = x; Y = y; } public int X { get; set; } public int Y { get; set; } }