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