mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 10:33:43 +00:00
9 lines
221 B
C#
9 lines
221 B
C#
using System.Threading.Tasks;
|
|
using CleanArchitecture.Shared.Events;
|
|
|
|
namespace CleanArchitecture.Domain.DomainEvents;
|
|
|
|
public interface IDomainEventStore
|
|
{
|
|
Task SaveAsync<T>(T domainEvent) where T : DomainEvent;
|
|
} |