PacketMediator/RaiNote.PacketMediator/IntermediatePacketStructHandlerData.cs

16 lines
539 B
C#
Raw Normal View History

2025-01-17 08:53:44 +00:00
// Licensed to Timothy Schenk under the Apache 2.0 License.
using Microsoft.CodeAnalysis;
namespace RaiNote.PacketMediator;
2025-01-18 20:32:43 +00:00
internal class IntermediatePacketStructHandlerData {
public IntermediatePacketStructHandlerData(string packetStructFullIdentifier, string sessionFullIdentifier) {
PacketStructFullIdentifier = packetStructFullIdentifier;
SessionFullIdentifier = sessionFullIdentifier;
2025-01-17 08:53:44 +00:00
}
2025-01-18 20:32:43 +00:00
public string PacketStructFullIdentifier { get; set; }
public string SessionFullIdentifier { get; set; }
2025-01-17 08:53:44 +00:00
}