15 lines
425 B
C#
15 lines
425 B
C#
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; }
|
|
}
|
|
}
|