1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00

13 lines
269 B
C#
Raw Normal View History

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