namespace ElectronNET.API
{
///
/// Event arguments for the / event.
///
public sealed class QuitEventArgs
{
///
/// Will prevent the default behaviour, which is terminating the application.
///
public void PreventDefault()
{
Electron.App.PreventQuit();
}
}
}