Files
Luis von der Eltz e13f197ff0 Cleanup & intro OSX
2021-01-31 15:40:50 +01:00

20 lines
615 B
C#

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