blob: a953206e897ea654ef0e6016d30347f185d4beca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#pragma warning disable SA1602 // Enumeration items should be documented
namespace MediaBrowser.Model.Plugins
{
/// <summary>
/// Plugin load status.
/// </summary>
public enum PluginStatus
{
RestartRequired = 1,
Active = 0,
Disabled = -1,
NotSupported = -2,
Malfunction = -3,
Superceded = -4,
DeleteOnStartup = -5
}
}
|