mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Added Notification System, Renamed Repository to Entities
This commit is contained in:
13
NzbDrone.Core/Entities/Config.cs
Normal file
13
NzbDrone.Core/Entities/Config.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
namespace NzbDrone.Core.Entities
|
||||
{
|
||||
[SubSonicTableNameOverride("Config")]
|
||||
public class Config
|
||||
{
|
||||
[SubSonicPrimaryKey]
|
||||
public string Key { get; set; }
|
||||
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user