|
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; }
|
|
}
|
|
}
|