namespace SVSim.BattleNode.Bridge; /// /// DI-injected options for the battle node. The web host populates these — typically /// nodeServerUrl is "ws://localhost:5148" matching ASPNETCORE_URLS. /// public sealed class BattleNodeOptions { public string NodeServerUrl { get; set; } = "ws://localhost:5148"; }