blob: 034af609c48422140de4bd7495c318eb8865463a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace MediaBrowser.Model.Configuration
{
public class TvdbOptions
{
/// <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; }
}
}
|