Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Events;
/// 
/// Represents an event that occurs after the model is prepared for view
///  
/// Type of the model 
public partial class ModelPreparedEvent
{
    #region Ctor
    /// 
    /// Ctor
    ///  
    /// Model
    public ModelPreparedEvent(T model)
    {
        Model = model;
    }
    #endregion
    #region Properties
    /// 
    /// Gets a model
    ///  
    public T Model { get; protected set; }
    #endregion
}