using System.ComponentModel.DataAnnotations;
namespace LobbyServerDto
{
///
/// Send to client upon request, this contains the connection info supplied by the host.
///
[LobbyMessage]
public partial class LobbyHostInfo
{
///
/// Lobby id this information is for
///
public Guid LobbyId { get; set; }
///
/// The hosts ip, this could be an internal address
///
[MaxLength(32)]
public string? HostIp { get; set; }
///
/// The hosts port
///
public int HostPort { get; set; }
}
}