LobbyServer/LobbyServerDto/LobbiesObserve.cs

15 lines
514 B
C#

namespace LobbyServerDto
{
/// <summary>
/// Used to subscribe to a game id by guid to observe it's list of open lobbies
/// </summary>
/// <remarks>A client can only be subscribed to one game id, sending multiple observe requests with different game ids will overwrite the previous</remarks>
[LobbyMessage]
public partial class LobbiesObserve
{
/// <summary>
/// The game id to subscribe to
/// </summary>
public Guid GameId { get; set; }
}
}