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