2010-09-23 05:19:47 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using System.Web.Security;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
|
2010-09-24 07:21:45 +02:00
|
|
|
|
public class SettingsModel
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-09-24 08:16:43 +02:00
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("TV Folder")]
|
|
|
|
|
public String TvFolder
|
2010-09-24 07:21:45 +02:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|