<PackageReference Include="System.Drawing.Common" Version="8.0.6" />

PathData

public sealed class PathData
Contains the graphical data that makes up a GraphicsPath object. This class cannot be inherited.
using System.Runtime.CompilerServices; namespace System.Drawing.Drawing2D { [System.Runtime.CompilerServices.NullableContext(2)] [System.Runtime.CompilerServices.Nullable(0)] public sealed class PathData { public PointF[] Points { get { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } public byte[] Types { get { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } public PathData() { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } }