Flow.Launcher/Flow.Launcher.Plugin/ActionContext.cs

15 lines
370 B
C#
Raw Permalink Normal View History

2020-04-21 09:12:17 +00:00
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; }
}
}