1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Configuration/Config.cs

17 lines
326 B
C#
Raw Normal View History

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