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.

AuditLogChange.cs 373 B

1234567891011121314151617
  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Linq;
  3. namespace Discord.API
  4. {
  5. internal class AuditLogChange
  6. {
  7. [JsonProperty("key")]
  8. public string ChangedProperty { get; set; }
  9. [JsonProperty("new_value")]
  10. public JToken NewValue { get; set; }
  11. [JsonProperty("old_value")]
  12. public JToken OldValue { get; set; }
  13. }
  14. }