19 lines
698 B
C#
19 lines
698 B
C#
namespace LobbyServerDto
|
|
{
|
|
/// <summary>
|
|
/// If send from host closes and deletes a lobby.
|
|
/// If received by client, the lobby with the Id parameter has been closed
|
|
/// </summary>
|
|
[LobbyMessage]
|
|
public partial class LobbyDelete
|
|
{
|
|
/// <summary>
|
|
/// If received by client, this contains the lobby id. Does not need to be set if the host sends this request.
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
/// <summary>
|
|
/// If received by client, this contains the game id. Does not need to be set if the host sends this request.
|
|
/// </summary>
|
|
public Guid GameId { get; set; }
|
|
}
|
|
} |