mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
bf1ff29519
commited somewhere between vancouver and vegas @ 2135ft. Alt and 480mph.
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);
|
|
}
|
|
} |