Flow.Launcher/Flow.Launcher/ViewModel/ResultsForUpdate.cs
2024-03-20 12:26:39 -05:00

16 lines
399 B
C#

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