@@ -5,6 +5,9 @@ using Model = Discord.API.Integration; | |||||
namespace Discord.Rest | namespace Discord.Rest | ||||
{ | { | ||||
/// <summary> | |||||
/// Represents a Rest-based implementation of <see cref="IIntegration"/>. | |||||
/// </summary> | |||||
[DebuggerDisplay(@"{DebuggerDisplay,nq}")] | [DebuggerDisplay(@"{DebuggerDisplay,nq}")] | ||||
public class RestIntegration : RestEntity<ulong>, IIntegration | public class RestIntegration : RestEntity<ulong>, IIntegration | ||||
{ | { | ||||
@@ -2,6 +2,9 @@ using Model = Discord.API.IntegrationAccount; | |||||
namespace Discord.Rest | namespace Discord.Rest | ||||
{ | { | ||||
/// <summary> | |||||
/// Represents a Rest-based implementation of <see cref="IIntegrationAccount"/>. | |||||
/// </summary> | |||||
public class RestIntegrationAccount : IIntegrationAccount | public class RestIntegrationAccount : IIntegrationAccount | ||||
{ | { | ||||
internal RestIntegrationAccount() { } | internal RestIntegrationAccount() { } | ||||
@@ -2,6 +2,9 @@ using Model = Discord.API.IntegrationApplication; | |||||
namespace Discord.Rest | namespace Discord.Rest | ||||
{ | { | ||||
/// <summary> | |||||
/// Represents a Rest-based implementation of <see cref="IIntegrationApplication"/>. | |||||
/// </summary> | |||||
public class RestIntegrationApplication : RestEntity<ulong>, IIntegrationApplication | public class RestIntegrationApplication : RestEntity<ulong>, IIntegrationApplication | ||||
{ | { | ||||
public string Name { get; private set; } | public string Name { get; private set; } | ||||