mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-23 08:15:27 +00:00
18 lines
No EOL
351 B
C#
18 lines
No EOL
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);
|
|
}
|
|
} |