mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
13 lines
No EOL
271 B
C#
13 lines
No EOL
271 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; }
|
|
}
|
|
} |