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;