LobbyServer/LobbyServerDto/LobbyRequestNatPunch.cs

17 lines
406 B
C#

using System.ComponentModel.DataAnnotations;
namespace LobbyServerDto
{
[LobbyMessage]
public partial class LobbyRequestNatPunch
{
public Guid LobbyId { get; set; }
[MaxLength(26)]
public byte[]? PasswordHash { get; set; }
public string? ClientIp { get; set; }
public int ClientPort { get; set; }
public int NatPunchId { get; set; }
}
}