Flow.Launcher/Plugins/Flow.Launcher.Plugin.ProcessKiller/ProcessResult.cs
2020-07-03 17:07:24 +03:00

17 lines
No EOL
334 B
C#

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; }
}
}