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