namespace ElectronNET.API.Entities { /// /// /// public class Point { /// /// Gets or sets the x. /// /// /// The x. /// public int X { get; set; } /// /// Gets or sets the y. /// /// /// The y. /// public int Y { get; set; } } }