No repository description.
namespace SplitApp.Shared.Messaging;
public interface IEventHandler<in TEvent> where TEvent : IIntegrationEvent
{
Task HandleAsync(TEvent @event, CancellationToken cancellationToken);
}