namespace NeonSprawl.Server.Game.Quests; /// Load-time quest step row (NEO-113). public sealed class QuestStepDefRow( string id, string displayName, IReadOnlyList objectives) { public string Id { get; } = id; public string DisplayName { get; } = displayName; public IReadOnlyList Objectives { get; } = objectives; }