diff options
| author | crobibero <cody@robibe.ro> | 2020-06-13 15:21:50 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-06-13 15:21:50 -0600 |
| commit | 50f6d8029dbf0460bfa5cebe72707decc3831b77 (patch) | |
| tree | 82a7890895327c2497cdea0ce5427785a3d22a1b /MediaBrowser.Common/Configuration/ConfigurationStore.cs | |
| parent | 81d3ec7205dd559e6444c17f9ecefc37977a5911 (diff) | |
| parent | 0011e8df47380936742302ef40639a4626a780ed (diff) | |
Merge remote-tracking branch 'upstream/api-migration' into api-item-update
Diffstat (limited to 'MediaBrowser.Common/Configuration/ConfigurationStore.cs')
| -rw-r--r-- | MediaBrowser.Common/Configuration/ConfigurationStore.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Configuration/ConfigurationStore.cs b/MediaBrowser.Common/Configuration/ConfigurationStore.cs new file mode 100644 index 000000000..d31d45e4c --- /dev/null +++ b/MediaBrowser.Common/Configuration/ConfigurationStore.cs @@ -0,0 +1,20 @@ +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; } + } +} |
