From 0a9348fd66fb675e6870e10327df5409ed1c1833 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 12 Feb 2024 19:24:58 +0000 Subject: [PATCH] feat: add parameterless ctor for reflection --- TcpDotNet/Protocol/ResponsePacket.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TcpDotNet/Protocol/ResponsePacket.cs b/TcpDotNet/Protocol/ResponsePacket.cs index 87a4f8c..f162c92 100644 --- a/TcpDotNet/Protocol/ResponsePacket.cs +++ b/TcpDotNet/Protocol/ResponsePacket.cs @@ -14,6 +14,10 @@ public abstract class ResponsePacket : Packet CallbackId = callbackId; } + internal ResponsePacket() + { + } + /// /// Gets the response identifier. ///