Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.TagHelpers.Admin;
///
/// Tab context item
///
public partial class NopTabContextItem
{
///
/// Title
///
public string Title { set; get; }
///
/// Content
///
public string Content { set; get; }
///
/// Is default tab
///
public bool IsDefault { set; get; }
}