Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Areas.Admin.Models.Plugins.Marketplace;
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Plugins;
///
/// Represents a plugins configuration model
///
public partial record PluginsConfigurationModel : BaseNopModel
{
#region Ctor
public PluginsConfigurationModel()
{
PluginsLocal = new PluginSearchModel();
AllPluginsAndThemes = new OfficialFeedPluginSearchModel();
}
#endregion
#region Properties
public PluginSearchModel PluginsLocal { get; set; }
public OfficialFeedPluginSearchModel AllPluginsAndThemes { get; set; }
#endregion
}