0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 18:42:56 +00:00
CleanArchitecture/CleanArchitecture.Domain/DomainEvents/IDomainEventStore.cs
2023-09-02 12:32:36 +02:00

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