2012-01-15 00:01:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class MiscSettingsModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Enable Backlog Searching")]
|
2012-02-22 04:12:43 +00:00
|
|
|
|
[Description("Should NzbDrone try to download missing episodes automatically?")]
|
2012-01-15 00:01:51 +00:00
|
|
|
|
public bool EnableBacklogSearching { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|