diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs index cc981ccf0..f555de130 100644 --- a/src/Discord.Net.Core/Entities/Users/IConnection.cs +++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs @@ -1,14 +1,29 @@ -using System.Collections.Generic; +using System.Collections.Generic; namespace Discord { public interface IConnection { + /// + /// ID of the connection account. + /// string Id { get; } + /// + /// The service of the connection (twich, youtube). + /// string Type { get; } + /// + /// The username of the connection account. + /// string Name { get; } + /// + /// Wheter the connection is revoked. + /// bool IsRevoked { get; } + /// + /// A of integration IDs. + /// IReadOnlyCollection IntegrationIds { get; } } }