namespace Toolkit.Foundation; public interface INotificationHandler : IHandler where TNotification : INotification { Task Handle(TNotification args, CancellationToken cancellationToken = default); }