namespace ElectronNET.API
{
///
///
///
public class TrayClickEventArgs
{
///
/// Gets or sets a value indicating whether [alt key].
///
///
/// true if [alt key]; otherwise, false.
///
public bool AltKey { get; set; }
///
/// Gets or sets a value indicating whether [shift key].
///
///
/// true if [shift key]; otherwise, false.
///
public bool ShiftKey { get; set; }
///
/// Gets or sets a value indicating whether [control key].
///
///
/// true if [control key]; otherwise, false.
///
public bool CtrlKey { get; set; }
///
/// Gets or sets a value indicating whether [meta key].
///
///
/// true if [meta key]; otherwise, false.
///
public bool MetaKey { get; set; }
}
}