1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 16:32:56 +01:00
Sonarr/NzbDrone.Web/Models/SettingsModels.cs

12 lines
280 B
C#
Raw Normal View History

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