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.

AuditLog.cs 349 B

12345678910111213141516
  1. using Newtonsoft.Json;
  2. namespace Discord.API
  3. {
  4. internal class AuditLog
  5. {
  6. [JsonProperty("webhooks")]
  7. public Webhook[] Webhooks { get; set; }
  8. [JsonProperty("users")]
  9. public User[] Users { get; set; }
  10. [JsonProperty("audit_log_entries")]
  11. public AuditLogEntry[] Entries { get; set; }
  12. }
  13. }