mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-07 15:07:41 +00:00
13 lines
No EOL
319 B
C#
13 lines
No EOL
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);
|
|
}
|
|
} |