mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
12 lines
280 B
C#
12 lines
280 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SettingsModel
|
|
{
|
|
[DisplayName("TV Series Root Folder(s)")]
|
|
public List<RootDir> Directories { get; set; }
|
|
}
|
|
} |