LobbyServer/LobbyServerDto/LobbyClientConnectionInfo.cs

15 lines
339 B
C#

namespace LobbyServerDto
{
/// <summary>
/// Send to lobby client after connection is established
/// </summary>
[LobbyMessage]
public partial class LobbyClientConnectionInfo
{
/// <summary>
/// Connection id on the lobby server
/// </summary>
public int Id { get; set; }
}
}