discord/Discord/Gateway/Payloads/IdentifyPayload.cs

16 lines
425 B
C#
Raw Normal View History

2024-06-09 18:51:48 +12:00
namespace Discord.Gateway.Payloads
{
internal class Identify
{
public required string Token { get; set; }
public required IdentifyConnectionProperties Properties { get; set; }
}
internal class IdentifyConnectionProperties
{
public required string Os { get; set; }
public required string Browser { get; set; }
public required string Device { get; set; }
}
}