mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Newznab providers can be configured by the end user.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("NewznabDefinitions")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class NewznabDefinition
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public Boolean Enable { get; set; }
|
||||
|
||||
public String Name { get; set; }
|
||||
|
||||
public String Url { get; set; }
|
||||
|
||||
public String ApiKey { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user