2017-10-15 17:03:07 +02:00
|
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public class MessageBoxResult
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the response.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The response.
|
|
|
|
|
|
/// </value>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public int Response { get; set; }
|
|
|
|
|
|
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets a value indicating whether [checkbox checked].
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// <c>true</c> if [checkbox checked]; otherwise, <c>false</c>.
|
|
|
|
|
|
/// </value>
|
2017-10-15 17:03:07 +02:00
|
|
|
|
public bool CheckboxChecked { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|