mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-08-10 18:19:36 +00:00
implement full Notification-API
This commit is contained in:
15
ElectronNET.API/Entities/NotificationAction.cs
Normal file
15
ElectronNET.API/Entities/NotificationAction.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user