mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 08:28:40 +05:00
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
11 lines
314 B
C#
11 lines
314 B
C#
namespace VersionedSerialization.Generator.Models;
|
|
|
|
public sealed record VersionCondition(
|
|
StructVersion? LessThan,
|
|
StructVersion? GreaterThan,
|
|
StructVersion? EqualTo,
|
|
StructVersion? LessThanOrEqual,
|
|
StructVersion? GreaterThanOrEqual,
|
|
string? IncludingTag,
|
|
string? ExcludingTag
|
|
); |