fixed some broken tests. broke some new ones.

This commit is contained in:
Keivan Beigi 2013-03-26 17:51:37 -07:00
commit 0a3b0c9973
10 changed files with 76 additions and 46 deletions

View file

@ -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; }
}
}