namespace Nop.Web.Framework.Models; /// /// Represents a plugin model /// public partial interface IPluginModel { /// /// Gets or sets a value indicating whether a plugin is active /// bool IsActive { get; set; } /// /// Gets or sets a friendly name /// string FriendlyName { get; set; } /// /// Gets or sets a system name /// string SystemName { get; set; } /// /// Gets or sets a display order /// int DisplayOrder { get; set; } /// /// Gets or sets a configuration URL /// string ConfigurationUrl { get; set; } /// /// Gets or sets a logo URL /// string LogoUrl { get; set; } }