mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 18:42:56 +00:00
9 lines
233 B
C#
9 lines
233 B
C#
using System.Threading.Tasks;
|
|
using CleanArchitecture.Shared.Events;
|
|
|
|
namespace CleanArchitecture.Domain.EventHandler.Fanout;
|
|
|
|
public interface IFanoutEventHandler
|
|
{
|
|
Task<DomainEvent> HandleDomainEventAsync(DomainEvent @event);
|
|
} |