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

17 lines
368 B
C#
Raw Normal View History

2010-09-23 06:19:47 +03: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 06:19:47 +03:00
namespace NzbDrone.Web.Models
{
2010-09-24 08:21:45 +03:00
public class SettingsModel
2010-09-23 06:19:47 +03:00
{
[DisplayName("TV Series Root Folder(s)")]
public List<RootDir> Directories { get; set; }
2010-09-23 06:19:47 +03:00
}
}