mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 02:40:01 +00:00
4bb4faf626
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; }
|
|
}
|
|
} |