You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
654 B
19 lines
654 B
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")]
|
|
[Description("Should NzbDrone try to download missing episodes automatically?")]
|
|
public bool EnableBacklogSearching { get; set; }
|
|
|
|
[DisplayName("Automatically Ignore Deleted Episodes")]
|
|
[Description("Should NzbDrone automatically ignore episodes that were deleted from disk?")]
|
|
public bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
|
|
}
|
|
} |