Browse Source

Added property get standard for IntegrationAccount

pull/1161/head
Chris Johnston 7 years ago
parent
commit
9185853db1
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs

+ 4
- 6
src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs View File

@@ -5,13 +5,11 @@ namespace Discord
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public struct IntegrationAccount
{
/// <summary>
/// ID of the account.
/// </summary>
/// <summary> Gets the ID of the account. </summary>
/// <returns> Gets the ID of the account. </returns>
public string Id { get; }
/// <summary>
/// Name of the account.
/// </summary>
/// <summary> Gets the name of the account. </summary>
/// <returns> Gets the name of the account. </returns>
public string Name { get; private set; }

public override string ToString() => Name;


Loading…
Cancel
Save