1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Web/Models/SettingsModels.cs

28 lines
505 B
C#
Raw Normal View History

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
{
[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
}
}