16 lines
346 B
C#
16 lines
346 B
C#
namespace DesktopNotifications
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public class NotificationEventArgs
|
|
{
|
|
public NotificationEventArgs(Notification notification)
|
|
{
|
|
Notification = notification;
|
|
}
|
|
|
|
/// <summary>
|
|
/// </summary>
|
|
public Notification Notification { get; }
|
|
}
|
|
} |