1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-13 15:39:53 +00:00
Radarr/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
}