Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Plugins.Marketplace;
///
/// Category for the official marketplace
///
public partial class OfficialFeedCategory
{
///
/// Identifier
///
public int Id { get; set; }
///
/// Parent category identifier
///
public int ParentCategoryId { get; set; }
///
/// Name
///
public string Name { get; set; }
}