Files
LukeFZ 20f90a0926 vendor in newer version of VersionedSerialization
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
2026-03-13 17:34:07 +01:00

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
);