CPF/CPF.Mac/Mac/Foundation/UNCDidDeliverNotificationEventArgs.cs

19 lines
298 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
public class UNCDidDeliverNotificationEventArgs : EventArgs
{
public NSUserNotification Notification
{
get;
set;
}
public UNCDidDeliverNotificationEventArgs(NSUserNotification notification)
{
Notification = notification;
}
}
}