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

DROPEFFECT

enum DROPEFFECT
Represents information about the effects of a drag-and-drop operation.
using System; using System.CodeDom.Compiler; namespace Windows.Win32.System.Ole { [Flags] [GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")] internal enum DROPEFFECT : uint { DROPEFFECT_NONE = 0, DROPEFFECT_COPY = 1, DROPEFFECT_MOVE = 2, DROPEFFECT_LINK = 4, DROPEFFECT_SCROLL = 2147483648 } }