mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-10 21:23:53 +00:00
15 lines
353 B
C#
15 lines
353 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
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; }
|
|
}
|
|
} |