Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs
2023-04-25 21:02:34 +08:00

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; }
}
}