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

16 lines
439 B
C#

namespace DesktopNotifications
{
/// <summary>
/// </summary>
public class NotificationDismissedEventArgs
{
public NotificationDismissedEventArgs(Notification notification, NotificationDismissReason reason)
{
Notification = notification;
Reason = reason;
}
public Notification Notification { get; }
public NotificationDismissReason Reason { get; }
}
}