Added SaveValues to ConfigService

This commit is contained in:
Mark McDowall 2013-03-05 08:13:23 -08:00
commit 3dcf99753e
3 changed files with 20 additions and 0 deletions

View file

@ -87,5 +87,6 @@ namespace NzbDrone.Core.Configuration
PriorityType NzbgetRecentTvPriority { get; set; }
string GetValue(string key, object defaultValue, bool persist = false);
void SetValue(string key, string value);
void SaveValues(Dictionary<string, object> configValues);
}
}