FanartOptions.cs 551 B

1234567891011121314151617
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class FanartOptions
  5. {
  6. /// <summary>
  7. /// Gets or sets a value indicating whether [enable automatic updates].
  8. /// </summary>
  9. /// <value><c>true</c> if [enable automatic updates]; otherwise, <c>false</c>.</value>
  10. public bool EnableAutomaticUpdates { get; set; }
  11. /// <summary>
  12. /// Gets or sets the user API key.
  13. /// </summary>
  14. /// <value>The user API key.</value>
  15. public string UserApiKey { get; set; }
  16. }
  17. }