using System;
namespace MediaBrowser.Common.Configuration
{
///
/// 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; }
}
}