using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
[SupportedOSPlatform("macos")]
public class NotificationAction
{
///
/// Gets or sets the label for the action.
///
public string Text { get; set; }
///
/// Gets or sets the type of action; can be 'button'.
///
public string Type { get; set; }
}
}