Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Plugins.Marketplace;
///
/// Represents an official feed plugin model
///
public partial record OfficialFeedPluginModel : BaseNopModel
{
#region Properties
public string Url { get; set; }
public string Name { get; set; }
public string CategoryName { get; set; }
public string SupportedVersions { get; set; }
public string PictureUrl { get; set; }
public string Price { get; set; }
#endregion
}