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