mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 13:44:47 +00:00
9 lines
210 B
C#
9 lines
210 B
C#
|
|
namespace ElectronNET.API
|
|||
|
|
{
|
|||
|
|
public class DisplayBalloonOptions
|
|||
|
|
{
|
|||
|
|
public string Icon { get; set; }
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
public string Content { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|