ConfigurationStore.cs 555 B

1234567891011121314151617181920
  1. using System;
  2. namespace MediaBrowser.Common.Configuration
  3. {
  4. /// <summary>
  5. /// Describes a single entry in the application configuration.
  6. /// </summary>
  7. public class ConfigurationStore
  8. {
  9. /// <summary>
  10. /// Gets or sets the unique identifier for the configuration.
  11. /// </summary>
  12. public string Key { get; set; }
  13. /// <summary>
  14. /// Gets or sets the type used to store the data for this configuration entry.
  15. /// </summary>
  16. public Type ConfigurationType { get; set; }
  17. }
  18. }