16 lines
393 B
C#
16 lines
393 B
C#
|
|
namespace LobbyServerDto
|
|
{
|
|
/// <summary>
|
|
/// Send from a client to the lobby server via udp to from the game port to retrieve the observerd external ip and port
|
|
/// </summary>
|
|
[LobbyMessage]
|
|
public partial class QueryExternalPortAndIp
|
|
{
|
|
/// <summary>
|
|
/// Lobby client id
|
|
/// </summary>
|
|
public int LobbyClientId { get; set; }
|
|
}
|
|
}
|