Files
Electron.NET/src/ElectronNET.API/API/Entities/NotificationAction.cs
2025-10-13 14:36:18 +02:00

18 lines
399 B
C#

namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
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; }
}
}