mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-07 23:12:44 +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);
|
|
}
|
|
} |