Improved keyboad shortcuts.

This commit is contained in:
Burak Kaan Köse
2026-03-08 13:21:42 +01:00
parent c1568d33e6
commit 15400d4096
35 changed files with 979 additions and 336 deletions
@@ -0,0 +1,16 @@
using System;
using Wino.Core.Domain.Enums;
namespace Wino.Core.Domain.Models;
public class KeyboardShortcutTriggerDetails
{
public Guid ShortcutId { get; init; }
public WinoApplicationMode Mode { get; init; }
public KeyboardShortcutAction Action { get; init; }
public string Key { get; init; } = string.Empty;
public ModifierKeys ModifierKeys { get; init; }
public bool Handled { get; set; }
public object Sender { get; init; }
public object Origin { get; init; }
}