Files
Electron.NET/ElectronNET.API/Entities/NotificationAction.cs

19 lines
434 B
C#
Raw Normal View History

2017-10-18 03:49:34 +02:00
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
2021-08-26 14:22:54 +02:00
[SupportedOSPlatform("macos")]
2017-10-18 03:49:34 +02:00
public class NotificationAction
{
/// <summary>
/// The label for the given action.
/// </summary>
public string Text { get; set; }
/// <summary>
/// The type of action, can be button.
/// </summary>
public string Type { get; set; }
}
}