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; } /// /// Convert this to . /// /// The point. public static implicit operator System.Drawing.Point(Point point) { return new System.Drawing.Point(point.X, point.Y); } } }