1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 23:27:26 +00:00
Radarr/NzbDrone.Web/Models/MiscSettingsModel.cs

15 lines
417 B
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-21 20:12:43 -08:00
[Description("Should NzbDrone try to download missing episodes automatically?")]
public bool EnableBacklogSearching { get; set; }
}
}