2025-01-17 09:53:44 +01:00
|
|
|
|
// Licensed to Timothy Schenk under the Apache 2.0 License.
|
|
|
|
|
|
|
|
|
|
namespace RaiNote.PacketMediator;
|
|
|
|
|
|
2025-01-18 21:32:43 +01:00
|
|
|
|
internal class IntermediatePacketHandlerData {
|
|
|
|
|
public IntermediatePacketHandlerData(string packetHandlerIdentifier,
|
|
|
|
|
IntermediatePacketStructHandlerData? packetStructHandlerData) {
|
2025-01-17 09:53:44 +01:00
|
|
|
|
PacketHandlerIdentifier = packetHandlerIdentifier;
|
|
|
|
|
PacketStructHandlerData = packetStructHandlerData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string PacketHandlerIdentifier { get; set; }
|
|
|
|
|
public IntermediatePacketStructHandlerData? PacketStructHandlerData { get; set; }
|
|
|
|
|
}
|