namespace NeonSprawl.Server.Game.Encounters; /// Load-time reward table row (NEO-101). public sealed class RewardTableDefRow( string id, string displayName, IReadOnlyList fixedGrants) { public string Id { get; } = id; public string DisplayName { get; } = displayName; public IReadOnlyList FixedGrants { get; } = fixedGrants; }