Lidarr/NzbDrone.Web/Models/SystemSettingsModel.cs

32 lines
1.1 KiB
C#
Raw Normal View History

2011-11-13 07:27:16 +00:00
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web.Mvc;
2011-11-13 07:27:16 +00:00
using NzbDrone.Common.Model;
namespace NzbDrone.Web.Models
{
public class SystemSettingsModel
{
[DisplayName("Port")]
[Description("Port that NzbDrone runs on")]
[Range(1, 65535, ErrorMessage = "Port must be between 1 and 65535")]
2012-02-25 21:21:41 +00:00
[Required(ErrorMessage = "Port must be between 1 and 65535")]
public int Port { get; set; }
[DisplayName("Launch Browser")]
[Description("Start web browser when NzbDrone starts?")]
public bool LaunchBrowser { get; set; }
[DisplayName("Authentication")]
[Description("Secure the server with authentication?")]
public AuthenticationType AuthenticationType { get; set; }
public SelectList AuthTypeSelectList { get; set; }
2012-09-04 07:11:27 +00:00
[DisplayName("Recycle Bin")]
[Description("Path to NzbDrone's internal recycle bin (optional)")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
public string RecycleBin { get; set; }
}
}