1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-26 22:52:40 +02:00
Radarr/NzbDrone.Core/Controllers/IConfigController.cs
2010-09-22 20:19:47 -07:00

9 lines
163 B
C#

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