Sonarr/NzbDrone.Core/Controllers/IConfigController.cs

18 lines
351 B
C#
Raw Normal View History

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;
}
string GetValue(string key, object defaultValue, bool makePermanent);
void SetValue(string key, string value);
2010-09-23 03:19:47 +00:00
}
}