namespace NeonSprawl.Server.Game.Mastery;
/// <summary>One tier row within a <see cref="MasteryTrackRow"/> (NEO-46).</summary>
public sealed record MasteryTierRow(
int TierIndex,
int RequiredLevel,
IReadOnlyList<MasteryBranchRow> Branches);