Files
Electron.NET/src/ElectronNET.API/API/Entities/NotificationAction.cs
2025-11-22 02:24:32 +01:00

22 lines
551 B
C#

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