1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 11:02:40 +01:00
Radarr/NzbDrone.Web/Models/MiscSettingsModel.cs
2012-02-21 23:08:22 -08:00

15 lines
417 B
C#

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; }
}
}