1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 23:42:33 +01:00
Sonarr/NzbDrone.Core/Repository/Config.cs

12 lines
227 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
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
}