FruitBank/Presentation/Nop.Web.Framework/Mvc/ModelBinding/IModelAttribute.cs

13 lines
259 B
C#

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