From c572a98dc73dcfc9697b5668f7d90f743c765981 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Mon, 30 Jul 2018 22:06:10 -0700 Subject: [PATCH] Added discord API documentation to IConnection interface --- .../Entities/Users/IConnection.cs | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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; } } }