mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
Check if URL is registered when running in non-admin and run accordingly
This commit is contained in:
parent
5343bde070
commit
f826890d2b
19 changed files with 100 additions and 19 deletions
17
NzbDrone.Common/Processes/ProcessOutput.cs
Normal file
17
NzbDrone.Common/Processes/ProcessOutput.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Common.Processes
|
||||
{
|
||||
public class ProcessOutput
|
||||
{
|
||||
public List<String> Standard { get; set; }
|
||||
public List<String> Error { get; set; }
|
||||
|
||||
public ProcessOutput()
|
||||
{
|
||||
Standard = new List<string>();
|
||||
Error = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue