jellyfin/MediaBrowser.Controller/Plugins/ConfigurationPageType.cs.cs

22 lines
415 B
C#
Raw Normal View History

using System.IO;
using MediaBrowser.Common.Plugins;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Enum ConfigurationPageType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum ConfigurationPageType
{
/// <summary>
/// The plugin configuration.
2018-12-28 00:27:57 +01:00
/// </summary>
PluginConfiguration,
2018-12-28 00:27:57 +01:00
/// <summary>
/// The none.
2018-12-28 00:27:57 +01:00
/// </summary>
None
}
}