2017-10-18 05:30:36 +02:00
|
|
|
|
namespace ElectronNET.API
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
2017-10-18 05:30:36 +02:00
|
|
|
|
public class DisplayBalloonOptions
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the icon.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The icon.
|
|
|
|
|
|
/// </value>
|
2017-10-18 05:30:36 +02:00
|
|
|
|
public string Icon { get; set; }
|
2017-10-24 21:43:27 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the title.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The title.
|
|
|
|
|
|
/// </value>
|
2017-10-18 05:30:36 +02:00
|
|
|
|
public string Title { get; set; }
|
2017-10-24 21:43:27 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the content.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The content.
|
|
|
|
|
|
/// </value>
|
2017-10-18 05:30:36 +02:00
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|