IConfigurationFactory.cs 358 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Common.Configuration
  4. {
  5. public interface IConfigurationFactory
  6. {
  7. IEnumerable<ConfigurationStore> GetConfigurations();
  8. }
  9. public class ConfigurationStore
  10. {
  11. public string Key { get; set; }
  12. public Type ConfigurationType { get; set; }
  13. }
  14. }