mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 02:27:13 +00:00
7603d8e1ba
model tables are automatically created.
12 lines
No EOL
231 B
C#
12 lines
No EOL
231 B
C#
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public class Config : ModelBase
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
} |