2012-01-15 01:01:51 +01: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 05:12:43 +01:00
|
|
|
|
[Description("Should NzbDrone try to download missing episodes automatically?")]
|
2012-01-15 01:01:51 +01:00
|
|
|
|
public bool EnableBacklogSearching { get; set; }
|
2012-02-28 07:06:02 +01:00
|
|
|
|
|
|
|
|
|
[DisplayName("Automatically Ignore Deleted Episodes")]
|
|
|
|
|
[Description("Should NzbDrone automatically ignore episodes that were deleted from disk?")]
|
|
|
|
|
public bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
|
2012-01-15 01:01:51 +01:00
|
|
|
|
}
|
|
|
|
|
}
|