blob: 9a73e34764b90ccb21be5033bdc7ffa9053fcf07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|