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.

Message.cs 498 B

1234567891011121314151617
  1. using Newtonsoft.Json;
  2. namespace Discord.API.Rpc
  3. {
  4. internal class Message : Discord.API.Message
  5. {
  6. [JsonProperty("blocked")]
  7. public Optional<bool> IsBlocked { get; }
  8. [JsonProperty("content_parsed")]
  9. public Optional<object[]> ContentParsed { get; }
  10. [JsonProperty("author_color")]
  11. public Optional<string> AuthorColor { get; } //#Hex
  12. [JsonProperty("mentions")]
  13. public new Optional<ulong[]> UserMentions { get; set; }
  14. }
  15. }