lidarr/NzbDrone.Core/Controllers/IConfigController.cs
2010-09-22 20:19:47 -07:00

9 lines
No EOL
163 B
C#

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