namespace ElectronNET.API.Entities
{
internal class MessageBoxResponse
{
public int response { get; set; }
public bool @checked { get; set; }
}
///
///
///
public class MessageBoxResult
{
///
/// Gets or sets the response.
///
///
/// The response.
///
public int Response { get; set; }
///
/// Gets or sets a value indicating whether [checkbox checked].
///
///
/// true if [checkbox checked]; otherwise, false.
///
public bool CheckboxChecked { get; set; }
}
}