Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Plugins.Marketplace;
/// <summary>
/// Feed of plugins from nopCommerce.com marketplace
/// </summary>
public partial class OfficialFeedPlugin
{
/// <summary>
/// Name
/// </summary>
public string Name { get; set; }
/// <summary>
/// URL
/// </summary>
public string Url { get; set; }
/// <summary>
/// Picture URL
/// </summary>
public string PictureUrl { get; set; }
/// <summary>
/// Category
/// </summary>
public string Category { get; set; }
/// <summary>
/// Supported versions
/// </summary>
public string SupportedVersions { get; set; }
/// <summary>
/// Price
/// </summary>
public string Price { get; set; }
}