diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
index dcc1c6ab6..89b835de6 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
@@ -5,6 +5,9 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest
{
+ ///
+ /// Contains audit log data related to a role creation.
+ ///
public class RoleCreateAuditLogData : IAuditLogData
{
private RoleCreateAuditLogData(ulong id, RoleEditInfo props)
@@ -41,7 +44,19 @@ namespace Discord.Rest
new RoleEditInfo(color, mentionable, hoist, name, permissions));
}
+ ///
+ /// Gets the ID of the role that has been created.
+ ///
+ ///
+ /// A representing the snowflake identifer to the role that has been created.
+ ///
public ulong RoleId { get; }
+ ///
+ /// Gets the role information that has been created.
+ ///
+ ///
+ /// An information object representing the properties of the role that has been created.
+ ///
public RoleEditInfo Properties { get; }
}
}