namespace MediaBrowser.Model.Configuration
{
public class FanartOptions
{
///
/// Gets or sets a value indicating whether [enable automatic updates].
///
/// true if [enable automatic updates]; otherwise, false.
public bool EnableAutomaticUpdates { get; set; }
///
/// Gets or sets the user API key.
///
/// The user API key.
public string UserApiKey { get; set; }
}
}