Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs
Hongtao Zhang 6fdff2971c
Merge Explorer & Everything Plugins (Step 1)
1. Shared Interface for Windows Index and Everything Index
2. Settings Merge (Part 1)
3. Include Everything dll
2022-06-25 12:38:50 -05:00

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