1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00:00
Sonarr/NzbDrone.Web/Models/SettingsModels.cs

17 lines
368 B
C#
Raw Normal View History

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