namespace PKHeX.WinForms.Controls;
///
/// Specifies the modifier for a drag-and-drop operation.
///
public enum DropModifier
{
///
/// No modifier is applied.
///
None,
///
/// Overwrite the target slot.
///
Overwrite,
///
/// Clone the source slot.
///
Clone,
}