Files
IM_NEW/DomainCommons/IDomainEvents.cs
T
2026-05-09 17:06:30 +08:00

13 lines
301 B
C#

using MediatR;
namespace IM.DomainCommons
{
public interface IDomainEvents
{
IEnumerable<INotification> GetDomainEvents();
void AddDomainEvent(INotification eventItem);
void AddDomainEventIfAbsent(INotification eventItem);
void ClearDomainEvents();
}
}