using LiteCharms.Features.Shop.Notifications.Models; namespace LiteCharms.Features.Shop.Notifications; public interface INotificationService { Task> CreateNotificationAsync(CreateNotification request, CancellationToken cancellationToken = default); Task UpdateNotificationAsync(UpdateNotification request, CancellationToken cancellationToken = default); }