22 lines
399 B
C#
22 lines
399 B
C#
namespace Nop.Services.Plugins;
|
|
|
|
/// <summary>
|
|
/// Represents a mode to load plugins
|
|
/// </summary>
|
|
public enum LoadPluginsMode
|
|
{
|
|
/// <summary>
|
|
/// All (Installed and Not installed)
|
|
/// </summary>
|
|
All = 0,
|
|
|
|
/// <summary>
|
|
/// Installed only
|
|
/// </summary>
|
|
InstalledOnly = 10,
|
|
|
|
/// <summary>
|
|
/// Not installed only
|
|
/// </summary>
|
|
NotInstalledOnly = 20
|
|
} |