TvdbOptions.cs 369 B

123456789101112
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class TvdbOptions
  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. }
  12. }