Flow.Launcher/Flow.Launcher.Plugin/ActionContext.cs
2020-04-21 21:27:02 +10:00

15 lines
No EOL
370 B
C#

namespace Flow.Launcher.Plugin
{
public class ActionContext
{
public SpecialKeyState SpecialKeyState { get; set; }
}
public class SpecialKeyState
{
public bool CtrlPressed { get; set; }
public bool ShiftPressed { get; set; }
public bool AltPressed { get; set; }
public bool WinPressed { get; set; }
}
}