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.

AuditLogEntry.cs 662 B

1234567891011121314151617181920212223242526
  1. using Newtonsoft.Json;
  2. namespace Discord.API
  3. {
  4. internal class AuditLogEntry
  5. {
  6. [JsonProperty("target_id")]
  7. public ulong? TargetId { get; set; }
  8. [JsonProperty("user_id")]
  9. public ulong UserId { get; set; }
  10. [JsonProperty("changes")]
  11. public AuditLogChange[] Changes { get; set; }
  12. [JsonProperty("options")]
  13. public AuditLogOptions Options { get; set; }
  14. [JsonProperty("id")]
  15. public ulong Id { get; set; }
  16. [JsonProperty("action_type")]
  17. public ActionType Action { get; set; }
  18. [JsonProperty("reason")]
  19. public string Reason { get; set; }
  20. }
  21. }