2010-09-23 03:19:47 +00:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2010-10-05 06:21:18 +00:00
|
|
|
|
[SubSonicTableNameOverride("Config")]
|
2010-09-23 03:19:47 +00:00
|
|
|
|
public class Config
|
|
|
|
|
{
|
|
|
|
|
[SubSonicPrimaryKey]
|
2010-09-28 05:35:15 +00:00
|
|
|
|
public string Key { get; set; }
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2010-09-28 05:35:15 +00:00
|
|
|
|
public string Value { get; set; }
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2010-09-28 05:35:15 +00:00
|
|
|
|
}
|