mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
646 B
C#
21 lines
646 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Flow.Launcher.Core.Plugin
|
|
{
|
|
// TODO: After Upgrading to .Net 7, adding Source Generating Context for IAsyncEnumerable JsonRPCMessage
|
|
|
|
[JsonSerializable(typeof(JsonRPCQueryResponseModel))]
|
|
public partial class JsonRPCQueryResponseModelContext : JsonSerializerContext
|
|
{
|
|
}
|
|
|
|
[JsonSerializable(typeof(JsonRPCRequestModel))]
|
|
public partial class JsonRPCRequestModelContext : JsonSerializerContext
|
|
{
|
|
}
|
|
|
|
[JsonSerializable(typeof(JsonRPCClientRequestModel))]
|
|
public partial class JsonRPCClientRequestModelContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|