Radarr/NzbDrone.Core/Controllers/IConfigController.cs

9 lines
163 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Controllers
{
public interface IConfigController
{
List<string> GetTvRoots();
}
}