mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
1. Shared Interface for Windows Index and Everything Index 2. Settings Merge (Part 1) 3. Include Everything dll
14 lines
No EOL
305 B
C#
14 lines
No EOL
305 B
C#
using System;
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search
|
|
{
|
|
public struct SearchResult
|
|
{
|
|
public string FullPath { get; init; }
|
|
public ResultType Type { get; init; }
|
|
|
|
public bool WindowsIndexed { get; init; }
|
|
|
|
public bool ShowIndexState { get; init; }
|
|
}
|
|
} |