jellyfin/MediaBrowser.Model/Configuration/TheMovieDbOptions.cs
2015-01-18 00:45:10 -05:00

13 lines
375 B
C#

namespace MediaBrowser.Model.Configuration
{
public class TheMovieDbOptions
{
/// <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; }
}
}