diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs
index c01e8ead7..09f4c805a 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs
@@ -1,5 +1,8 @@
namespace Discord.Rest
{
+ ///
+ /// Represents information for a member.
+ ///
public struct MemberInfo
{
internal MemberInfo(string nick, bool? deaf, bool? mute)
@@ -9,8 +12,28 @@ namespace Discord.Rest
Mute = mute;
}
+ ///
+ /// Gets the nickname of the updated member.
+ ///
+ ///
+ /// A string representing the nickname of the updated member; null if none is set.
+ ///
public string Nickname { get; }
+ ///
+ /// Gets a value that indicates whether the updated member is deafened by the guild.
+ ///
+ ///
+ /// true if the updated member is deafened (i.e. not permitted to listen to or speak to others) by the guild;
+ /// otherwise false.
+ ///
public bool? Deaf { get; }
+ ///
+ /// Gets a value that indicates whether the updated member is muted (i.e. not permitted to speak via voice) by the
+ /// guild.
+ ///
+ ///
+ /// true if the updated member is muted by the guild; otherwise false.
+ ///
public bool? Mute { get; }
}
}
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
index 6e0ee75b9..f22b83e4c 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
@@ -48,7 +48,19 @@ namespace Discord.Rest
/// A user object representing the user who the changes were performed on.
///
public IUser Target { get; }
+ ///
+ /// Gets the member information before the changes.
+ ///
+ ///
+ /// An information object containing the original member information before the changes were made.
+ ///
public MemberInfo Before { get; }
+ ///
+ /// Gets the member information after the changes.
+ ///
+ ///
+ /// An information object containing the member information after the changes were made.
+ ///
public MemberInfo After { get; }
}
}