mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 00:18:18 +05:00
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
14 lines
396 B
C#
14 lines
396 B
C#
using Microsoft.CodeAnalysis.CSharp;
|
|
using VersionedSerialization.Generator.Utils;
|
|
|
|
namespace VersionedSerialization.Generator.Models;
|
|
|
|
public sealed record ObjectSerializationInfo(
|
|
string Namespace,
|
|
string Name,
|
|
bool HasBaseType,
|
|
bool IsPublic,
|
|
SyntaxKind DefinitionType,
|
|
bool CanGenerateSizeMethod,
|
|
ImmutableEquatableArray<PropertySerializationInfo> Properties
|
|
); |