namespace EbbesMemeClipboard.Models; public enum InsertMode { /// Just copy the meme to the clipboard; the user pastes it manually. CopyOnly, /// Copy to the clipboard, then paste it into whatever app was focused before the picker opened. PasteIntoActiveWindow, /// Same as PasteIntoActiveWindow, then also press Enter to submit/send it. PasteAndSend, }