sonarr-repo-only/NzbDrone.Core/Controllers/IConfigController.cs

9 lines
163 B
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System.Collections.Generic;
namespace NzbDrone.Core.Controllers
{
public interface IConfigController
{
List<string> GetTvRoots();
}
}