22 lines
464 B
C#
22 lines
464 B
C#
namespace Nop.Core.Events;
|
|
|
|
/// <summary>
|
|
/// A container for entities that are updated.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public partial class EntityUpdatedEvent<T> where T : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Ctor
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
public EntityUpdatedEvent(T entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Entity
|
|
/// </summary>
|
|
public T Entity { get; }
|
|
} |