Files
Electron.NET/src/ElectronNET.API/API/Entities/DisplayBalloonOptions.cs

32 lines
695 B
C#
Raw Normal View History

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