mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
18 lines
351 B
C#
18 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
{
|
|
public interface IConfigController
|
|
{
|
|
String SeriesRoot
|
|
{
|
|
get;
|
|
|
|
set;
|
|
}
|
|
|
|
string GetValue(string key, object defaultValue, bool makePermanent);
|
|
void SetValue(string key, string value);
|
|
}
|
|
} |