PacketMediator/RaiNote.PacketMediator/IntermediatePacketStructData.cs

12 lines
330 B
C#
Raw Normal View History

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