25 lines
580 B
C#
25 lines
580 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Maki.Structures.Gateway
|
|
{
|
|
/// <summary>
|
|
/// Discord Gateway Identification Properties structure
|
|
/// </summary>
|
|
internal struct GatewayIdentificationProperties
|
|
{
|
|
[JsonProperty("$os")]
|
|
public string OperatingSystem;
|
|
|
|
[JsonProperty("$browser")]
|
|
public string Browser;
|
|
|
|
[JsonProperty("$device")]
|
|
public string Device;
|
|
|
|
[JsonProperty("$referrer")]
|
|
public string Referrer;
|
|
|
|
[JsonProperty("$referring_domain")]
|
|
public string ReferringDomain;
|
|
}
|
|
}
|