mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
1. Rename some method in QueryConstructor.cs by removing prefix and suffix 2. Split the logic of checking '>' to outer SearchManager.cs 3. Use IAsyncEnumerable for potential future improvement.
15 lines
353 B
C#
15 lines
353 B
C#
using System;
|
|
|
|
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 bool ShowIndexState { get; init; }
|
|
}
|
|
}
|