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 }