mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-30 12:14:15 +01:00
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
12 lines
No EOL
270 B
C#
12 lines
No EOL
270 B
C#
using NzbDrone.Core.Datastore;
|
|
using ServiceStack.DataAnnotations;
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public class Config : ModelBase
|
|
{
|
|
[Index(Unique = true)]
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
} |