From d281c47129397d9c637099fc502550b0ecc8134c Mon Sep 17 00:00:00 2001 From: Goost91 <906725+goost91@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:16:11 +0100 Subject: [PATCH] make Type field in Connection nullable to fix mismatch in JSON schema --- Source/EasyNetQ.Management.Client/Model/Connection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/EasyNetQ.Management.Client/Model/Connection.cs b/Source/EasyNetQ.Management.Client/Model/Connection.cs index dd29acac..de066f25 100755 --- a/Source/EasyNetQ.Management.Client/Model/Connection.cs +++ b/Source/EasyNetQ.Management.Client/Model/Connection.cs @@ -13,7 +13,7 @@ public record Connection( string? LastBlockedBy, string? LastBlockedAge, long Channels, - string Type, + string? Type, string Node, string Name, string? Address,