123456789101112131415161718192021 |
- 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
- }
- }
|