2011-04-10 02:44:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.ComponentModel;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
2010-09-24 05:21:45 +00:00
|
|
|
|
public class SettingsModel
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2011-03-09 07:40:48 +00:00
|
|
|
|
[DisplayName("TV Series Root Folder(s)")]
|
|
|
|
|
public List<RootDir> Directories { get; set; }
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|