14 lines
367 B
C#
14 lines
367 B
C#
namespace LobbyServerDto
|
|
{
|
|
/// <summary>
|
|
/// Send if a client requests information about a password protected lobby with an invalid password hash
|
|
/// </summary>
|
|
[LobbyMessage]
|
|
public partial class LobbyWrongPassword
|
|
{
|
|
/// <summary>
|
|
/// Id of the lobby
|
|
/// </summary>
|
|
public Guid LobbyId { get; set; }
|
|
}
|
|
} |