namespace ElectronNET.API.Entities
{
///
/// Result returned by dialog.showMessageBox / dialog.showMessageBoxSync.
///
/// Up-to-date with Electron API 39.2
public class MessageBoxResult
{
///
/// The index of the clicked button.
///
public int Response { get; set; }
///
/// The checked state of the checkbox if CheckboxLabel was set; otherwise false.
///
public bool CheckboxChecked { get; set; }
}
}