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

STATSTG

struct STATSTG
Contains statistical data about an open storage, stream, or byte-array object.
using System; using System.CodeDom.Compiler; using System.Runtime.InteropServices.ComTypes; using Windows.Win32.Foundation; namespace Windows.Win32.System.Com { [GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")] internal struct STATSTG { internal PWSTR pwcsName; internal uint type; internal ulong cbSize; internal global::System.Runtime.InteropServices.ComTypes.FILETIME mtime; internal global::System.Runtime.InteropServices.ComTypes.FILETIME ctime; internal global::System.Runtime.InteropServices.ComTypes.FILETIME atime; internal STGM grfMode; private uint _grfLocksSupported; internal Guid clsid; internal uint grfStateBits; internal uint reserved; internal LOCKTYPE grfLocksSupported { get { return (LOCKTYPE)_grfLocksSupported; } set { _grfLocksSupported = (uint)value; } } } }