mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
No EOL
334 B
C#
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; }
|
|
}
|
|
} |