using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
///
///
[SupportedOSPlatform("macos")]
public class NotificationAction
{
///
/// The label for the given action.
///
public string Text { get; set; }
///
/// The type of action, can be button.
///
public string Type { get; set; }
}
}