1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00
Sonarr/NzbDrone.Web/Models/SettingsModels.cs

12 lines
280 B
C#
Raw Normal View History

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