8ef37f6b0e
Renamed file.
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
|
|
}
|
|
}
|