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

13 lines
271 B
C#
Raw Normal View History

2013-02-24 07:48:52 +01:00
using NzbDrone.Core.Datastore;
2013-03-24 20:56:51 +01:00
using ServiceStack.DataAnnotations;
2013-02-24 07:48:52 +01:00
namespace NzbDrone.Core.Configuration
{
public class Config : ModelBase
{
2013-03-24 20:56:51 +01:00
[Index(Unique = true)]
2013-02-24 07:48:52 +01:00
public string Key { get; set; }
2013-03-24 20:56:51 +01:00
2013-02-24 07:48:52 +01:00
public string Value { get; set; }
}
}