mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
87 lines
1.9 KiB
C#
87 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
namespace PepperDash.Essentials.WebSocketServer
|
|
{
|
|
/// <summary>
|
|
/// Represents a JoinResponse
|
|
/// </summary>
|
|
public class JoinResponse
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ClientId
|
|
/// </summary>
|
|
[JsonProperty("clientId")]
|
|
public string ClientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Room Key for this client
|
|
/// </summary>
|
|
[JsonProperty("roomKey")]
|
|
public string RoomKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// System UUID for this system
|
|
/// </summary>
|
|
[JsonProperty("systemUUid")]
|
|
public string SystemUuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the RoomUuid
|
|
/// </summary>
|
|
[JsonProperty("roomUUid")]
|
|
public string RoomUuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Config
|
|
/// </summary>
|
|
[JsonProperty("config")]
|
|
public object Config { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the CodeExpires
|
|
/// </summary>
|
|
[JsonProperty("codeExpires")]
|
|
public DateTime CodeExpires { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the UserCode
|
|
/// </summary>
|
|
[JsonProperty("userCode")]
|
|
public string UserCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the UserAppUrl
|
|
/// </summary>
|
|
[JsonProperty("userAppUrl")]
|
|
public string UserAppUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the WebSocketUrl with clientId query parameter
|
|
/// </summary>
|
|
[JsonProperty("webSocketUrl")]
|
|
public string WebSocketUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets or sets the EnableDebug
|
|
/// </summary>
|
|
[JsonProperty("enableDebug")]
|
|
public bool EnableDebug { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the DeviceInterfaceSupport
|
|
/// </summary>
|
|
[JsonProperty("deviceInterfaceSupport")]
|
|
public Dictionary<string, DeviceInterfaceInfo> DeviceInterfaceSupport { get; set; }
|
|
}
|
|
}
|