From 9185853db1d3ed753833ec21dea7f92c52e20c32 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Mon, 30 Jul 2018 22:43:16 -0700 Subject: [PATCH] Added property get standard for IntegrationAccount --- .../Entities/Guilds/IntegrationAccount.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs b/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs index 9c83939e3..2b7fdbf7c 100644 --- a/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs +++ b/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs @@ -5,13 +5,11 @@ namespace Discord [DebuggerDisplay("{DebuggerDisplay,nq}")] public struct IntegrationAccount { - /// - /// ID of the account. - /// + /// Gets the ID of the account. + /// Gets the ID of the account. public string Id { get; } - /// - /// Name of the account. - /// + /// Gets the name of the account. + /// Gets the name of the account. public string Name { get; private set; } public override string ToString() => Name;