You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpeakingEvent.cs 209 B

1234567891011
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class SpeakingEvent
  6. {
  7. [JsonProperty("user_id")]
  8. public ulong UserId { get; set; }
  9. }
  10. }