Flow.Launcher/Plugins/Flow.Launcher.Plugin.ProcessKiller/ProcessResult.cs

17 lines
334 B
C#
Raw Permalink Normal View History

using System.Diagnostics;
namespace Flow.Launcher.Plugin.ProcessKiller
{
internal class ProcessResult
{
public ProcessResult(Process process, int score)
{
Process = process;
Score = score;
}
public Process Process { get; }
public int Score { get; }
}
}