Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Microsoft.AspNetCore.Razor.TagHelpers;
namespace Nop.Web.Framework.TagHelpers.Admin;
/// 
/// "nop-cards" tag helper
///  
[HtmlTargetElement("nop-cards", Attributes = ID_ATTRIBUTE_NAME)]
public partial class NopCardsTagHelper : TagHelper
{
    #region Constants
    protected const string ID_ATTRIBUTE_NAME = "id";
    #endregion
    #region Properties
    /// 
    /// ViewContext
    ///  
    [HtmlAttributeNotBound]
    [ViewContext]
    public ViewContext ViewContext { get; set; }
    #endregion
}