1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-04 11:43:19 +02:00
Sonarr/NzbDrone.Web/Models/SettingsModels.cs

17 lines
368 B
C#
Raw Normal View History

2010-09-22 20:19:47 -07:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using NzbDrone.Core.Model;
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
}
}