neon-sprawl/server/NeonSprawl.Server/Game/Mastery/MasteryBranchRow.cs

8 lines
234 B
C#

namespace NeonSprawl.Server.Game.Mastery;
/// <summary>One branch row within a mastery tier (NEO-46).</summary>
public sealed record MasteryBranchRow(
string BranchId,
string? DisplayName,
IReadOnlyList<string> PerkIds);