using System;
namespace Abp.Events.Bus.Entities
{
///
/// This type of event is used to notify just before creation of an Entity.
///
/// Entity type
[Serializable]
public class EntityCreatingEventData : EntityChangingEventData
{
///
/// Constructor.
///
/// The entity which is being created
public EntityCreatingEventData(TEntity entity)
: base(entity)
{
}
}
}