mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
17 lines
326 B
C#
17 lines
326 B
C#
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(); }
|
|
}
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
} |