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