mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Newznab providers can be configured by the end user.
This commit is contained in:
parent
f3f2691b4d
commit
6c86f1dfdd
13 changed files with 503 additions and 18 deletions
20
NzbDrone.Core/Repository/NewznabDefinition.cs
Normal file
20
NzbDrone.Core/Repository/NewznabDefinition.cs
Normal file
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue