mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Merge branch 'markus' into kay.one
Conflicts: NzbDrone/NzbDrone.csproj NzbDrone/Providers/ConfigProvider.cs
This commit is contained in:
commit
012fa88301
25 changed files with 909 additions and 52 deletions
10
NzbDrone/Model/ApplicationMode.cs
Normal file
10
NzbDrone/Model/ApplicationMode.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
namespace NzbDrone.Model
|
||||
{
|
||||
public enum ApplicationMode
|
||||
{
|
||||
Console,
|
||||
Help,
|
||||
InstallService,
|
||||
UninstallService
|
||||
}
|
||||
}
|
13
NzbDrone/Model/AuthenticationType.cs
Normal file
13
NzbDrone/Model/AuthenticationType.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Model
|
||||
{
|
||||
public enum AuthenticationType
|
||||
{
|
||||
Anonymous = 0,
|
||||
Windows = 1
|
||||
}
|
||||
}
|
11
NzbDrone/Model/ProcessInfo.cs
Normal file
11
NzbDrone/Model/ProcessInfo.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System.Diagnostics;
|
||||
|
||||
namespace NzbDrone.Model
|
||||
{
|
||||
public class ProcessInfo
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public ProcessPriorityClass Priority { get; set; }
|
||||
public string StartPath { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue