Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Messages;
///
/// A container for tokens that are added.
///
/// Entity type
///
public partial class EntityTokensAddedEvent where T : BaseEntity
{
///
/// Ctor
///
/// Entity
/// Tokens
public EntityTokensAddedEvent(T entity, IList tokens)
{
Entity = entity;
Tokens = tokens;
}
///
/// Entity
///
public T Entity { get; }
///
/// Tokens
///
public IList Tokens { get; }
}