2012-01-14 16:01:51 -08: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-21 20:12:43 -08:00
|
|
|
[Description("Should NzbDrone try to download missing episodes automatically?")]
|
2012-01-14 16:01:51 -08:00
|
|
|
public bool EnableBacklogSearching { get; set; }
|
2012-02-27 22:06:02 -08:00
|
|
|
|
|
|
|
[DisplayName("Automatically Ignore Deleted Episodes")]
|
2012-08-29 20:05:43 -07:00
|
|
|
[Description("Deleted episodes are automatically ignored.")]
|
2012-02-27 22:06:02 -08:00
|
|
|
public bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
|
2012-08-06 22:32:07 -07:00
|
|
|
|
2012-08-29 20:01:34 -07:00
|
|
|
[DisplayName("Specified Release Groups")]
|
2012-08-29 20:05:43 -07:00
|
|
|
[Description("Comma separated list of release groups to download episodes (leave empty for all groups)")]
|
2012-08-29 21:15:30 -07:00
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2012-08-06 22:32:07 -07:00
|
|
|
public string AllowedReleaseGroups { get; set; }
|
2012-12-20 21:36:48 -08:00
|
|
|
|
|
|
|
[DisplayName("Ignore Articles")]
|
|
|
|
[Description("Ignore articles when sorting by series title?")]
|
|
|
|
public bool IgnoreArticlesWhenSortingSeries { get; set; }
|
2012-01-14 16:01:51 -08:00
|
|
|
}
|
|
|
|
}
|