// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Configuration { #nullable disable using System; /// /// Describes a single entry in the application configuration. /// public class ConfigurationStore { /// /// Gets or sets the unique identifier for the configuration. /// public string Key { get; set; } /// /// Gets or sets the type used to store the data for this configuration entry. /// public Type ConfigurationType { get; set; } } }