2021-05-05 10:57:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-03 11:04:45 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Configuration
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Describes a single entry in the application configuration.
|
|
|
|
/// </summary>
|
|
|
|
public class ConfigurationStore
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the unique identifier for the configuration.
|
|
|
|
/// </summary>
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type used to store the data for this configuration entry.
|
|
|
|
/// </summary>
|
|
|
|
public Type ConfigurationType { get; set; }
|
|
|
|
}
|
|
|
|
}
|