From 465ead9858021083b335cb5274339d8196a01039 Mon Sep 17 00:00:00 2001 From: Paulo Date: Sun, 30 May 2021 23:49:36 -0300 Subject: [PATCH] Fix build for audit logs --- src/Models/AuditLog/AuditLog.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Models/AuditLog/AuditLog.cs b/src/Models/AuditLog/AuditLog.cs index 54fd26bad..0eabc493b 100644 --- a/src/Models/AuditLog/AuditLog.cs +++ b/src/Models/AuditLog/AuditLog.cs @@ -7,16 +7,18 @@ namespace Discord.Net.Models /// public record AuditLog { + /* /// /// Gets an array of s. /// - /*[JsonPropertyName("webhooks")] + [JsonPropertyName("webhooks")] public Optional Webhooks { get; init; }*/ //TODO Add Webhook + /* /// /// Gets an array of s. /// - /*[JsonPropertyName("users")] + [JsonPropertyName("users")] public Optional Users { get; init; }*/ //TODO Add User /// @@ -25,10 +27,11 @@ namespace Discord.Net.Models [JsonPropertyName("audit_log_entries")] public Optional AuditLogEntries { get; init; } + /* /// /// Gets an array of s. /// - /*[JsonPropertyName("integrations")] + [JsonPropertyName("integrations")] public Optional Integrations { get; init; }*/ //TODO Add Integration } }