ConfigurationStore.cs 574 B

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