using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreenTree.Nachtragsmanagement.Core.Plugins
{
///
/// Represents a mode to load plugins
///
public enum LoadPluginsMode
{
///
/// All (Installed & Not installed)
///
All = 0,
///
/// Installed only
///
InstalledOnly = 10,
///
/// Not installed only
///
NotInstalledOnly = 20
}
}