mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
21 lines
468 B
C#
21 lines
468 B
C#
using System.Runtime.Versioning;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SupportedOSPlatform("macos")]
|
|
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; }
|
|
}
|
|
} |