using System.Collections.Generic; namespace Flow.Launcher.Plugin.Explorer.Search { public record struct SearchResult { public SearchResult() { } public string FullPath { get; init; } public ResultType Type { get; init; } public int Score { get; init; } public bool WindowsIndexed { get; init; } public List HighlightData { get; init; } = null; } }