1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Configuration/Config.cs

17 lines
326 B
C#
Raw Normal View History

2013-02-24 07:48:52 +01: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 07:48:52 +01:00
public string Value { get; set; }
}
}