Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs
2026-01-05 09:43:48 +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;
}
}