Files
TaskHybrid/salesbook.Maui/Core/System/Notification/ShinyNotificationManager.cs
2025-09-09 11:43:07 +02:00

9 lines
325 B
C#

using salesbook.Shared.Core.Interface.System.Notification;
using Shiny.Notifications;
namespace salesbook.Maui.Core.System.Notification;
public class ShinyNotificationManager(INotificationManager notificationManager) : IShinyNotificationManager
{
public Task RequestAccess() => notificationManager.RequestAccess();
}