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
2011-03-08 23:40:48 -08:00

17 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository;
namespace NzbDrone.Web.Models
{
public class SettingsModel
{
[DisplayName("TV Series Root Folder(s)")]
public List<RootDir> Directories { get; set; }
}
}