mirror of
https://github.com/Readarr/Readarr
synced 2025-12-25 09:47:14 +01:00
13 lines
No EOL
267 B
C#
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; }
|
|
}
|
|
} |