Files
SVSimServer/SVSim.BattleNode/Sessions/PendingBattle.cs

8 lines
279 B
C#

namespace SVSim.BattleNode.Sessions;
/// <summary>
/// Sparse pre-connect record: enough to validate the incoming WS connect and resolve
/// the viewer. Full BattleSession is created on connect.
/// </summary>
public sealed record PendingBattle(string BattleId, long ViewerId);