aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Configuration/ConfigurationStore.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-06-03 13:04:45 +0200
committerBond-009 <bond.009@outlook.com>2020-06-03 13:04:45 +0200
commitf404e915eeef6cc9b05c6d006569b6d3a3e54eee (patch)
tree30f3de8d2f494bfc1c42f262d17096105062cb11 /MediaBrowser.Common/Configuration/ConfigurationStore.cs
parent40502a33e0f0e3c84487be6d3eff2be35c1448ad (diff)
Enable StyleCop for MediaBrowser.Common
Diffstat (limited to 'MediaBrowser.Common/Configuration/ConfigurationStore.cs')
-rw-r--r--MediaBrowser.Common/Configuration/ConfigurationStore.cs20
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; }
+ }
+}