Flow.Launcher/Flow.Launcher.Core/Plugin/JsonRPCV2Models/JsonRPCQueryRequest.cs
2023-06-02 23:05:09 +08:00

9 lines
204 B
C#

using System.Collections.Generic;
using Flow.Launcher.Plugin;
namespace Flow.Launcher.Core.Plugin.JsonRPCV2Models
{
public record JsonRPCQueryRequest(
List<JsonRPCResult> Results
);
}