mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
17 lines
406 B
C#
17 lines
406 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ThreeXplWsClient.Models;
|
|
|
|
public class GetWebsocketTokenModel
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public required string Data { get; set; }
|
|
[JsonPropertyName("context")]
|
|
public GetWebSocketTokenContextModel? Context { get; set; }
|
|
}
|
|
|
|
public class GetWebSocketTokenContextModel
|
|
{
|
|
[JsonPropertyName("code")]
|
|
public int? Code { get; set; }
|
|
} |