1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone/ProcessInfo.cs

11 lines
234 B
C#
Raw Normal View History

2011-10-07 09:57:43 +03:00
using System.Diagnostics;
2011-10-07 09:36:04 +03:00
namespace NzbDrone
{
public class ProcessInfo
{
public int Id { get; set; }
public ProcessPriorityClass Priority { get; set; }
public string StartPath { get; set; }
}
2011-10-07 09:57:43 +03:00
}