Radarr/NzbDrone.Core/Configuration/Config.cs

12 lines
223 B
C#
Raw Normal View History

2013-02-24 06:48:52 +00:00
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; }
}
}