mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
13 lines
319 B
C#
13 lines
319 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IConfigProvider
|
|
{
|
|
String SeriesRoot { get; set; }
|
|
String EpisodeNameFormat { get; set; }
|
|
|
|
string GetValue(string key, object defaultValue, bool makePermanent);
|
|
void SetValue(string key, string value);
|
|
}
|
|
} |