mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 11:02:57 +00:00
9 lines
239 B
C#
9 lines
239 B
C#
using System.Threading.Tasks;
|
|
using CleanArchitecture.Domain.DomainEvents;
|
|
|
|
namespace CleanArchitecture.Domain.EventHandler.Fanout;
|
|
|
|
public interface IFanoutEventHandler
|
|
{
|
|
Task<DomainEvent> HandleDomainEventAsync(DomainEvent @event);
|
|
} |