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

22 lines
551 B
C#
Raw Normal View History

using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
2017-10-18 03:49:34 +02:00
{
/// <summary>
///
/// </summary>
/// <remarks>Up-to-date with Electron API 39.2</remarks>
[SupportedOSPlatform("macos")]
2017-10-18 03:49:34 +02:00
public class NotificationAction
{
/// <summary>
/// Gets or sets the label for the action.
2017-10-18 03:49:34 +02:00
/// </summary>
public string Text { get; set; }
/// <summary>
/// Gets or sets the type of action; can be 'button'.
2017-10-18 03:49:34 +02:00
/// </summary>
public string Type { get; set; }
}
}