1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-11-06 09:19:38 +02:00
Files
Sonarr/NzbDrone.Core/Repository/Config.cs

12 lines
224 B
C#
Raw Normal View History

2011-06-16 19:27:10 -07:00
using PetaPoco;
2010-09-22 20:19:47 -07:00
namespace NzbDrone.Core.Repository
2010-09-22 20:19:47 -07:00
{
2011-06-16 19:27:10 -07:00
[PrimaryKey("Key", autoIncrement = false)]
2010-09-22 20:19:47 -07:00
public class Config
{
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
}