mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
22 lines
415 B
C#
22 lines
415 B
C#
using System.IO;
|
|
using MediaBrowser.Common.Plugins;
|
|
|
|
namespace MediaBrowser.Controller.Plugins
|
|
{
|
|
/// <summary>
|
|
/// Enum ConfigurationPageType.
|
|
/// </summary>
|
|
public enum ConfigurationPageType
|
|
{
|
|
/// <summary>
|
|
/// The plugin configuration.
|
|
/// </summary>
|
|
PluginConfiguration,
|
|
|
|
/// <summary>
|
|
/// The none.
|
|
/// </summary>
|
|
None
|
|
}
|
|
}
|