diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
index f1b62ee24..63db5ac31 100644
--- a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
+++ b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
@@ -4,41 +4,36 @@ namespace Discord
{
public interface IGuildIntegration
{
- ///
- /// The integration ID.
- ///
+ /// Gets the integration ID.
+ /// Gets the integration ID.
ulong Id { get; }
- ///
- /// The integration name.
- ///
+ /// Gets the integration name.
+ /// Gets the integration name.
string Name { get; }
- ///
- /// The integration type (twich, youtube, etc).
- ///
+ /// Gets the integration type (twitch, youtube, etc).
+ /// Gets the integration type (twitch, youtube, etc).
string Type { get; }
- ///
- /// Is this integration enabled?
- ///
+ /// Gets if this integration is enabled or not.
+ /// Gets if this integration is enabled or not.
bool IsEnabled { get; }
- ///
- /// Is this integration syncing?
- ///
+ /// Gets if this integration is syncing or not.
+ /// Gets if this integration is syncing or not.
bool IsSyncing { get; }
- ///
- /// ID that this integration uses for "subscribers".
- ///
+ /// Gets the ID that this integration uses for "subscribers".
+ /// Gets the ID that this integration uses for "subscribers".
ulong ExpireBehavior { get; }
- ///
- /// The grace period before expiring subscribers.
- ///
+ /// Gets the grace period before expiring subscribers.
+ /// Gets the grace period before expiring subscribers.
ulong ExpireGracePeriod { get; }
- ///
- /// When this integration was last synced.
- ///
+ /// Gets when this integration was last synced.
+ /// Gets when this integration was last synced.
DateTimeOffset SyncedAt { get; }
///
- /// Integration account information. See .
+ /// Gets integration account information. See .
///
+ ///
+ /// Gets integration account information. See .
+ ///
IntegrationAccount Account { get; }
IGuild Guild { get; }