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; } }