mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 03:03:40 +01:00
Initial upload
This commit is contained in:
17
MediaBrowser.Model/Plugins/PluginStatus.cs
Normal file
17
MediaBrowser.Model/Plugins/PluginStatus.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user