added settings view to mvc project

This commit is contained in:
kay.one 2010-09-23 22:21:45 -07:00
parent 941d516e42
commit d7bae9135c
15 changed files with 89 additions and 148 deletions

View file

@ -1,9 +1,15 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Controllers
{
public interface IConfigController
{
List<string> GetTvRoots();
String SeriesRoot
{
get;
set;
}
}
}