namespace Nop.Core.Events; /// /// A container for passing entities that have been deleted. This is not used for entities that are deleted logically via a bit column. /// /// public partial class EntityDeletedEvent where T : BaseEntity { /// /// Ctor /// /// Entity public EntityDeletedEvent(T entity) { Entity = entity; } /// /// Entity /// public T Entity { get; } }