mirror of
https://github.com/Readarr/Readarr
synced 2026-05-05 11:10:37 +02:00
11 lines
No EOL
234 B
C#
11 lines
No EOL
234 B
C#
using System.Diagnostics;
|
|
|
|
namespace NzbDrone
|
|
{
|
|
public class ProcessInfo
|
|
{
|
|
public int Id { get; set; }
|
|
public ProcessPriorityClass Priority { get; set; }
|
|
public string StartPath { get; set; }
|
|
}
|
|
} |