0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-01 11:02:57 +00:00
CleanArchitecture/CleanArchitecture.Domain/EventHandler/Fanout/IFanoutEventHandler.cs
2023-09-02 11:14:01 +02:00

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);
}