using System.ComponentModel.DataAnnotations; namespace LobbyServerDto { /// /// Request the host address for a lobby /// [LobbyMessage] public partial class LobbyRequestHostInfo { /// /// Id of the lobby /// public Guid LobbyId { get; set; } /// /// Hash of the password if the lobby requires one /// [MaxLength(64)] public byte[]? PasswordHash { get; set; } } }