1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 02:37:40 +00:00
Sonarr/NzbDrone.Core/Configuration/Config.cs
kay.one 7603d8e1ba auto increment ID.
model tables are automatically created.
2013-03-25 23:19:53 -07:00

12 lines
No EOL
231 B
C#

using System.Linq;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Configuration
{
public class Config : ModelBase
{
public string Key { get; set; }
public string Value { get; set; }
}
}