Flow.Launcher/Flow.Launcher.Core/Plugin/JsonRPCV2Models/JsonRPCQueryRequest.cs

10 lines
204 B
C#
Raw Permalink Normal View History

2023-06-02 15:05:09 +00:00
using System.Collections.Generic;
using Flow.Launcher.Plugin;
namespace Flow.Launcher.Core.Plugin.JsonRPCV2Models
{
public record JsonRPCQueryRequest(
List<JsonRPCResult> Results
);
}