mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 13:44:38 +00:00
25 lines
610 B
C#
25 lines
610 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class MessageBoxResult
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the response.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The response.
|
|
/// </value>
|
|
public int Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether [checkbox checked].
|
|
/// </summary>
|
|
/// <value>
|
|
/// <c>true</c> if [checkbox checked]; otherwise, <c>false</c>.
|
|
/// </value>
|
|
public bool CheckboxChecked { get; set; }
|
|
}
|
|
}
|