Lidarr/NzbDrone.Core/Configuration/Config.cs

17 lines
326 B
C#
Raw Normal View History

2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Configuration
{
public class Config : ModelBase
{
private string _key;
public string Key
{
get { return _key; }
set { _key = value.ToLowerInvariant(); }
}
2013-02-24 06:48:52 +00:00
public string Value { get; set; }
}
}