diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-18 00:45:10 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-18 00:45:10 -0500 |
| commit | 5f76b59e67f64c1f24b5938808521f356a67039e (patch) | |
| tree | 480a738384080d3b4d67b2955a28d883eda55fd9 /MediaBrowser.Model/Configuration/FanartOptions.cs | |
| parent | 7903037524cafd88f3989d4c91b9c883751f5b89 (diff) | |
separate provider options
Diffstat (limited to 'MediaBrowser.Model/Configuration/FanartOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/FanartOptions.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/FanartOptions.cs b/MediaBrowser.Model/Configuration/FanartOptions.cs new file mode 100644 index 000000000..e992abe5d --- /dev/null +++ b/MediaBrowser.Model/Configuration/FanartOptions.cs @@ -0,0 +1,17 @@ + +namespace MediaBrowser.Model.Configuration +{ + public class FanartOptions + { + /// <summary> + /// Gets or sets a value indicating whether [enable automatic updates]. + /// </summary> + /// <value><c>true</c> if [enable automatic updates]; otherwise, <c>false</c>.</value> + public bool EnableAutomaticUpdates { get; set; } + /// <summary> + /// Gets or sets the user API key. + /// </summary> + /// <value>The user API key.</value> + public string UserApiKey { get; set; } + } +} |
