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.

RpcFrame.cs 531 B

1234567891011121314151617181920
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. using System;
  4. namespace Discord.API.Rpc
  5. {
  6. internal class RpcFrame
  7. {
  8. [JsonProperty("cmd")]
  9. public string Cmd { get; set; }
  10. [JsonProperty("nonce")]
  11. public Optional<Guid?> Nonce { get; set; }
  12. [JsonProperty("evt")]
  13. public Optional<string> Event { get; set; }
  14. [JsonProperty("data")]
  15. public Optional<object> Data { get; set; }
  16. [JsonProperty("args")]
  17. public object Args { get; set; }
  18. }
  19. }