1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 02:27:13 +00:00
Lidarr/NzbDrone.Core/Configuration/Config.cs
2013-02-23 22:48:52 -08:00

12 lines
No EOL
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; }
}
}