Sonarr/NzbDrone.Web/Models/SettingsModels.cs

28 lines
505 B
C#
Raw Normal View History

2010-09-23 03:19:47 +00: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 05:21:45 +00:00
public class SettingsModel
2010-09-23 03:19:47 +00:00
{
[Required]
[DataType(DataType.Text)]
[DisplayName("TV Folder")]
public String TvFolder
2010-09-24 05:21:45 +00:00
{
get;
set;
}
2010-09-23 03:19:47 +00:00
}
}