mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
12 lines
272 B
C#
12 lines
272 B
C#
|
using System;
|
||
|
|
||
|
namespace NzbDrone.Core.Providers
|
||
|
{
|
||
|
public interface IConfigProvider
|
||
|
{
|
||
|
String SeriesRoot { get; set; }
|
||
|
|
||
|
string GetValue(string key, object defaultValue, bool makePermanent);
|
||
|
void SetValue(string key, string value);
|
||
|
}
|
||
|
}
|