zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Entities/IDomainEvents.cs
2023-12-05 17:22:48 +08:00

16 lines
336 B
C#

using MediatR;
namespace ZeroFramework.DeviceCenter.Domain.Entities
{
public interface IDomainEvents
{
IReadOnlyCollection<INotification> DomainEvents { get; }
void AddDomainEvent(INotification eventItem);
void RemoveDomainEvent(INotification eventItem);
void ClearDomainEvents();
}
}