namespace Nop.Services.Plugins.Marketplace; /// /// Feed of plugins from nopCommerce.com marketplace /// public partial class OfficialFeedPlugin { /// /// Name /// public string Name { get; set; } /// /// URL /// public string Url { get; set; } /// /// Picture URL /// public string PictureUrl { get; set; } /// /// Category /// public string Category { get; set; } /// /// Supported versions /// public string SupportedVersions { get; set; } /// /// Price /// public string Price { get; set; } }