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; }
|
2012-02-28 06:06:02 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Automatically Ignore Deleted Episodes")]
|
2012-08-30 03:05:43 +00:00
|
|
|
|
[Description("Deleted episodes are automatically ignored.")]
|
2012-02-28 06:06:02 +00:00
|
|
|
|
public bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
|
2012-08-07 05:32:07 +00:00
|
|
|
|
|
2012-08-30 03:01:34 +00:00
|
|
|
|
[DisplayName("Specified Release Groups")]
|
2012-08-30 03:05:43 +00:00
|
|
|
|
[Description("Comma separated list of release groups to download episodes (leave empty for all groups)")]
|
2012-08-30 04:15:30 +00:00
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-08-07 05:32:07 +00:00
|
|
|
|
public string AllowedReleaseGroups { get; set; }
|
2012-01-15 00:01:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|