mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
2871723bfe
Start of AddExisting.
17 lines
368 B
C#
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; }
|
|
}
|
|
}
|