namespace DesktopNotifications
{
///
///
///
public class NotificationActivatedEventArgs : NotificationEventArgs
{
public NotificationActivatedEventArgs(Notification notification, string actionId)
: base(notification)
{
ActionId = actionId;
}
///
/// The id associated with the activation action. "default" denotes the platform-specific default action.
/// On Windows this means the user clicked on the notification.
///
public string ActionId { get; }
}
}