Files
AvaloniaDesktopNotifications/DesktopNotifications/NotificationEventArgs.cs
T
2021-02-07 17:28:41 +01:00

16 lines
346 B
C#

namespace DesktopNotifications
{
/// <summary>
/// </summary>
public class NotificationEventArgs
{
public NotificationEventArgs(Notification notification)
{
Notification = notification;
}
/// <summary>
/// </summary>
public Notification Notification { get; }
}
}