CPF/CPF.Mac/Mac/Foundation/UNCDidDeliverNotificationEventArgs.cs
2023-11-21 23:05:03 +08:00

19 lines
298 B
C#

using System;
namespace CPF.Mac.Foundation
{
public class UNCDidDeliverNotificationEventArgs : EventArgs
{
public NSUserNotification Notification
{
get;
set;
}
public UNCDidDeliverNotificationEventArgs(NSUserNotification notification)
{
Notification = notification;
}
}
}