Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs
VictoriousRaptor cfd705ca68 Use Highlight matches from Everything
To solve inaccurate highlight when facing Chinese Pinyin searches
2026-01-02 23:33:45 +08:00

18 lines
435 B
C#

using System.Collections.Generic;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public record struct SearchResult
{
public 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;
}
}