mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-03 19:39:07 +08:00
15 lines
360 B
C#
15 lines
360 B
C#
namespace Wox.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; }
|
|
}
|
|
} |