mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
20 lines
481 B
C#
20 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ombi.Common.Processes
|
|
{
|
|
public class ProcessInfo
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string StartPath { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0}:{1} [{2}]", Id, Name ?? "Unknown", StartPath ?? "Unknown");
|
|
}
|
|
}
|
|
}
|