mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 05:34:47 +00:00
10 lines
248 B
C#
10 lines
248 B
C#
namespace ElectronNET.API
|
|
{
|
|
public class TrayClickEventArgs
|
|
{
|
|
public bool AltKey { get; set; }
|
|
public bool ShiftKey { get; set; }
|
|
public bool CtrlKey { get; set; }
|
|
public bool MetaKey { get; set; }
|
|
}
|
|
} |