mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
448 B
C#
17 lines
448 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,
|
|
bool ShouldClearExistingResults = false)
|
|
{
|
|
public string ID { get; } = Metadata.ID;
|
|
}
|
|
}
|