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; }
///
/// Room Key this token is associated with
///
public string RoomKey { get; set; }
///
/// Unique ID for this token
///
public string Uuid { get; set; }
///
/// Touchpanel Key this token is associated with, if this is a touch panel token
///
public string TouchpanelKey { get; set; } = "";
///
/// Gets or sets the Token
///
public string Token { get; set; } = null;
}
}