mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed some broken tests. broke some new ones.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user