Files
AvaloniaDesktopNotifications/DesktopNotifications/NotificationEventArgs.cs
T
Luis von der Eltz e13f197ff0 Cleanup & intro OSX
2021-01-31 15:40:50 +01:00

17 lines
359 B
C#

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