1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-13 18:15:58 +00:00
Radarr/NzbDrone.Core/Entities/Config.cs

13 lines
No EOL
267 B
C#

using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Entities
{
[SubSonicTableNameOverride("Config")]
public class Config
{
[SubSonicPrimaryKey]
public string Key { get; set; }
public string Value { get; set; }
}
}