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

24 lines
583 B
C#

using System;
using System.Threading.Tasks;
namespace DesktopNotifications.Apple
{
public class AppleNotificationManager : INotificationManager
{
public void Dispose()
{
}
public event EventHandler<NotificationActivatedEventArgs> NotificationActivated;
public event EventHandler<NotificationDismissedEventArgs> NotificationDismissed;
public ValueTask Initialize()
{
}
public ValueTask ShowNotification(Notification notification, DateTimeOffset? expirationTime = null)
{
}
}
}