mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
12 lines
No EOL
272 B
C#
12 lines
No EOL
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);
|
|
}
|
|
} |