<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.4.25258.110" />

POINTS

struct POINTS
The POINTS structure defines the x- and y-coordinates of a point.
using System.CodeDom.Compiler; using System.Drawing; namespace Windows.Win32.Foundation { [GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")] internal struct POINTS { internal short x; internal short y; public static implicit operator Point(POINTS point) { return new Point(point.x, point.y); } } }