Added pasting and sending features
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace EbbesMemeClipboard.Models;
|
||||
|
||||
public sealed class AppSettings
|
||||
{
|
||||
public InsertMode InsertMode { get; set; } = InsertMode.PasteIntoActiveWindow;
|
||||
public ModifierKeys HotkeyModifiers { get; set; } = ModifierKeys.Control | ModifierKeys.Alt;
|
||||
public Key HotkeyKey { get; set; } = Key.M;
|
||||
}
|
||||
Reference in New Issue
Block a user