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