Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs

14 lines
299 B
C#
Raw Permalink Normal View History

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