jellyfin/MediaBrowser.Model/Plugins/PluginStatus.cs

19 lines
489 B
C#
Raw Normal View History

2020-12-06 18:48:54 -05:00
#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,
2020-12-14 18:08:04 -05:00
Superceded = -4,
DeleteOnStartup = -5
2020-12-06 18:48:54 -05:00
}
}