Sonarr/NzbDrone.Web/Models/MiscSettingsModel.cs

28 lines
1.1 KiB
C#
Raw Normal View History

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?")]
public bool EnableBacklogSearching { get; set; }
[DisplayName("Automatically Ignore Deleted Episodes")]
2012-08-30 03:05:43 +00:00
[Description("Deleted episodes are automatically ignored.")]
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)")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
2012-08-07 05:32:07 +00:00
public string AllowedReleaseGroups { get; set; }
[DisplayName("Ignore Articles")]
[Description("Ignore articles when sorting by series title?")]
public bool IgnoreArticlesWhenSortingSeries { get; set; }
}
}