You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/NzbDrone.Core/Repository/Config.cs

12 lines
224 B

using PetaPoco;
14 years ago
namespace NzbDrone.Core.Repository
14 years ago
{
[PrimaryKey("Key", autoIncrement = false)]
14 years ago
public class Config
{
public string Key { get; set; }
14 years ago
public string Value { get; set; }
14 years ago
}
}