diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs
index 71dde6e97..7ef4a37d3 100644
--- a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs
+++ b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs
@@ -140,20 +140,21 @@ namespace Discord
/// welcome messages are sent; null if none is set.
///
ulong? SystemChannelId { get; }
-<<<<<<< HEAD
///
/// Gets the ID of the user that owns this guild.
///
///
/// A representing the snowflake identifier of the user that owns this guild.
///
-=======
- /// Gets the application id of the guild creator if it is bot-created.
- ulong? ApplicationId { get; }
- /// Gets the id of the user that created this guild.
->>>>>>> Implement ApplicationId in Guild model
ulong OwnerId { get; }
///
+ /// Gets the application id of the guild creator if it is bot-created.
+ ///
+ ///
+ /// A representing the snowflake identifier of the application Id that created this guild, or null if it was not bot-created.
+ ///
+ ulong? ApplicationId { get; }
+ ///
/// Gets the ID of the region hosting this guild's voice channels.
///
///
diff --git a/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs b/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
index c04d18161..a4114a197 100644
--- a/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
+++ b/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
@@ -32,6 +32,7 @@ namespace Discord.Rest
public MfaLevel MfaLevel { get; private set; }
///
public DefaultMessageNotifications DefaultMessageNotifications { get; private set; }
+ ///
public ExplicitContentFilterLevel ExplicitContentFilter { get; private set; }
///
diff --git a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
index cc05bffb5..9486a45bc 100644
--- a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
+++ b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
@@ -75,6 +75,7 @@ namespace Discord.WebSocket
internal bool IsAvailable { get; private set; }
/// Indicates whether the client is connected to this guild.
public bool IsConnected { get; internal set; }
+ ///
public ulong? ApplicationId { get; internal set; }
internal ulong? AFKChannelId { get; private set; }