IPluginConfigurationPage.cs 415 B

123456789101112131415161718192021
  1. using System.IO;
  2. using MediaBrowser.Common.Plugins;
  3. namespace MediaBrowser.Controller.Plugins
  4. {
  5. /// <summary>
  6. /// Enum ConfigurationPageType.
  7. /// </summary>
  8. public enum ConfigurationPageType
  9. {
  10. /// <summary>
  11. /// The plugin configuration.
  12. /// </summary>
  13. PluginConfiguration,
  14. /// <summary>
  15. /// The none.
  16. /// </summary>
  17. None
  18. }
  19. }