using System.ComponentModel.DataAnnotations;
namespace LobbyServerDto
{
///
/// The ip and port seen by the lobby udp server by an request.
///
[LobbyMessage]
public partial class SeenExternalIpAndPort
{
///
/// The seen ip of the client
///
[MaxLength(32)]
public string? Ip { get; set; }
///
/// The seen port of the client
///
public int Port { get; set; }
}
}