namespace ElectronNET.API.Entities { /// /// /// public class NotificationAction { /// /// The label for the given action. /// public string Text { get; set; } /// /// The type of action, can be button. /// public string Type { get; set; } } }