2010-09-24 05:21:45 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
|
|
|
{
|
|
|
|
|
public interface IConfigController
|
|
|
|
|
{
|
2010-09-24 05:21:45 +00:00
|
|
|
|
String SeriesRoot
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
|
|
|
|
|
set;
|
|
|
|
|
}
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
|
|
|
|
string GetValue(string key, object defaultValue, bool makePermanent);
|
|
|
|
|
void SetValue(string key, string value);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|