using Flow.Launcher.Plugin; using System.Collections.Generic; using System.Threading; namespace Flow.Launcher.ViewModel { public record struct ResultsForUpdate( IReadOnlyList Results, PluginMetadata Metadata, Query Query, CancellationToken Token, bool ReSelectFirstResult = true, bool shouldClearExistingResults = false) { public string ID { get; } = Metadata.ID; } }