using System;
namespace Abp.Events.Bus.Entities
{
///
/// This type of event can be used to notify just after deletion of an Entity.
///
/// Entity type
[Serializable]
public class EntityDeletedEventData : EntityChangedEventData
{
///
/// Constructor.
///
/// The entity which is deleted
public EntityDeletedEventData(TEntity entity)
: base(entity)
{
}
}
}