namespace Nop.Services.Plugins; /// /// Represents a mode to load plugins /// public enum LoadPluginsMode { /// /// All (Installed and Not installed) /// All = 0, /// /// Installed only /// InstalledOnly = 10, /// /// Not installed only /// NotInstalledOnly = 20 }