From 3d8e08219b28d1dc9cfe4eac8c2379fc38ba575a Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Mon, 30 Jul 2018 22:41:05 -0700 Subject: [PATCH] Made changes to get field descriptions from feedback, added returns tag to IConnection --- .../Entities/Users/IConnection.cs | 26 +++++++------------ 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs index 96d271bd4..b518ab35a 100644 --- a/src/Discord.Net.Core/Entities/Users/IConnection.cs +++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs @@ -4,26 +4,20 @@ namespace Discord { public interface IConnection { - /// - /// ID of the connection account. - /// + /// Gets the ID of the connection account. + /// Gets the ID of the connection account. string Id { get; } - /// - /// The service of the connection (twich, youtube). - /// + /// Gets the service of the connection (twitch, youtube). + /// Gets the service of the connection (twitch, youtube). string Type { get; } - /// - /// The username of the connection account. - /// + /// Gets the username of the connection account. + /// Gets the username of the connection account. string Name { get; } - /// - /// Whether the connection is revoked. - /// + /// Gets whether the connection is revoked. + /// Gets whether the connection is revoked. bool IsRevoked { get; } - - /// - /// A of integration IDs. - /// + /// Gets a of integration IDs. + /// Gets a of integration IDs. IReadOnlyCollection IntegrationIds { get; } } }