1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 17:31:47 +02:00
Radarr/NzbDrone.Core/Repository/Config.cs

13 lines
269 B
C#
Raw Normal View History

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