PacketMediator/RaiNote.PacketMediator/IntermediatePacketStructData.cs
Timothy Schenk da32bd5957
rough outline
Signed-off-by: Timothy Schenk <admin@rainote.dev>
2025-01-20 00:47:51 +01:00

12 lines
No EOL
330 B
C#

using Microsoft.CodeAnalysis;
namespace RaiNote.PacketMediator;
internal record IntermediatePacketStructData(
Location SymbolLocation,
string PacketStructFullIdentifier,
string? EnumValue,
string EnumTypeFullIdentifier,
string EnumMemberIdentifier,
string? EnumMaxValue,
bool ImplementsInterface);