13 lines
369 B
C#
13 lines
369 B
C#
|
|
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; }
|
|
}
|
|
}
|