12 lines
330 B
C#
12 lines
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);
|