mirror of https://github.com/lidarr/Lidarr
12 lines
223 B
C#
12 lines
223 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; }
|
||
|
}
|
||
|
}
|