namespace ElectronNET.API
{
///
///
///
public class DisplayBalloonOptions
{
///
/// Gets or sets the icon.
///
///
/// The icon.
///
public string Icon { get; set; }
///
/// Gets or sets the title.
///
///
/// The title.
///
public string Title { get; set; }
///
/// Gets or sets the content.
///
///
/// The content.
///
public string Content { get; set; }
}
}