namespace Nop.Web.Framework.Mvc.ModelBinding;
/// <summary>
/// Represents custom model attribute
/// </summary>
public partial interface IModelAttribute
{
/// Gets name of the attribute
string Name { get; }
}