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

18 lines
399 B
C#
Raw Permalink Normal View History

2017-10-18 03:49:34 +02:00
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
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; }
}
}