From 9bbf5805426623902f691ef2b7e44d1240cef9dc Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Mon, 30 Jul 2018 22:48:48 -0700 Subject: [PATCH] Added property get pattern to xml docs and identical returns tag. --- .../Entities/Guilds/IGuildIntegration.cs | 45 +++++++++---------- 1 file changed, 20 insertions(+), 25 deletions(-) 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; }