mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 08:28:40 +05:00
11 lines
302 B
C#
11 lines
302 B
C#
using VersionedSerialization.Generator.Utils;
|
|
|
|
namespace VersionedSerialization.Generator.Models;
|
|
|
|
public sealed record PropertySerializationInfo(
|
|
string Name,
|
|
string ReadMethod,
|
|
string SizeExpression,
|
|
int Alignment,
|
|
ImmutableEquatableArray<VersionCondition> VersionConditions
|
|
); |