You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
555 B
21 lines
555 B
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; }
|
|
}
|
|
}
|