mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
fixed some broken tests. broke some new ones.
This commit is contained in:
parent
57120c9eeb
commit
0a3b0c9973
10 changed files with 76 additions and 46 deletions
|
@ -4,7 +4,14 @@ namespace NzbDrone.Core.Configuration
|
|||
{
|
||||
public class Config : ModelBase
|
||||
{
|
||||
public string Key { get; set; }
|
||||
private string _key;
|
||||
|
||||
public string Key
|
||||
{
|
||||
get { return _key; }
|
||||
set { _key = value.ToLowerInvariant(); }
|
||||
}
|
||||
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue