Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace Nop.Web.Framework.Events;
/// <summary>
/// Represents an event that occurs after the model is received from the view
/// </summary>
/// <typeparam name="T">Type of the model</typeparam>
public partial class ModelReceivedEvent<T>
{
#region Ctor
/// <summary>
/// Ctor
/// </summary>
/// <param name="model">Model</param>
/// <param name="modelState">Model state</param>
public ModelReceivedEvent(T model, ModelStateDictionary modelState)
{
Model = model;
ModelState = modelState;
}
#endregion
#region Properties
/// <summary>
/// Gets a model
/// </summary>
public T Model { get; protected set; }
/// <summary>
/// Gets a model state
/// </summary>
public ModelStateDictionary ModelState { get; protected set; }
#endregion
}