// RB2 Core Connect namespace CoreConnect.Commerce.Notifications; /// <summary>/// The Notifications service Interface./// </summary>public interface INotificationService{ public Task<List<Notification>?> FetchMessages(List<string> messageTypes, CancellationToken cancellationToken); }