Mango.Nop.Libraries/Nop.Services/Plugins/Marketplace/OfficialFeedCategory.cs

22 lines
459 B
C#

namespace Nop.Services.Plugins.Marketplace;
/// <summary>
/// Category for the official marketplace
/// </summary>
public partial class OfficialFeedCategory
{
/// <summary>
/// Identifier
/// </summary>
public int Id { get; set; }
/// <summary>
/// Parent category identifier
/// </summary>
public int ParentCategoryId { get; set; }
/// <summary>
/// Name
/// </summary>
public string Name { get; set; }
}