namespace PepperDash.Essentials.WebSocketServer { /// /// Represents a JoinToken /// public class JoinToken { /// /// Unique client ID for a client that is joining /// public string Id { get; set; } /// /// Gets or sets the Code /// public string Code { get; set; } public string RoomKey { get; set; } public string Uuid { get; set; } public string TouchpanelKey { get; set; } = ""; /// /// Gets or sets the Token /// public string Token { get; set; } = null; } }