mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
AutoConfigure for SAB is setup, it works for systems with NzbDrone and SABnzbd on the same server only.
This commit is contained in:
parent
70bfc49b4e
commit
49a059bdea
7 changed files with 97 additions and 59 deletions
13
NzbDrone.Core/Model/ConnectionInfoModel.cs
Normal file
13
NzbDrone.Core/Model/ConnectionInfoModel.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public class ConnectionInfoModel
|
||||
{
|
||||
public string Address { get; set; }
|
||||
public int Port { get; set; }
|
||||
}
|
||||
}
|
|
@ -7,9 +7,8 @@ namespace NzbDrone.Core.Model
|
|||
{
|
||||
public class SabnzbdInfoModel
|
||||
{
|
||||
public string ApiKey { get; set; }
|
||||
public string Host { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string ApiKey { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue