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

19 lines
492 B
C#
Raw Permalink Normal View History

using System.Diagnostics;
using Flow.Launcher.Plugin.SharedModels;
namespace Flow.Launcher.Plugin.ProcessKiller
{
2025-10-14 10:49:29 +00:00
internal class ProcessResult(Process process, int score, string title, MatchResult match, string tooltip)
{
2025-10-14 10:49:29 +00:00
public Process Process { get; } = process;
2025-10-14 10:49:29 +00:00
public int Score { get; } = score;
2025-10-14 10:49:29 +00:00
public string Title { get; } = title;
2025-10-14 10:49:29 +00:00
public MatchResult TitleMatch { get; } = match;
2025-10-14 10:49:29 +00:00
public string Tooltip { get; } = tooltip;
}
}