Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs
Jack Ye 7e9dc18676
Remove unnecessary constructor
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-01-03 20:34:51 +08:00

14 lines
384 B
C#

using System.Collections.Generic;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public record struct SearchResult
{
public string FullPath { get; init; }
public ResultType Type { get; init; }
public int Score { get; init; }
public bool WindowsIndexed { get; init; }
public List<int> HighlightData { get; init; } = null;
}
}