Browse Source

removed public identitiers from app and connection

pull/2168/head
FeroxFoxxo 3 years ago
parent
commit
e0e73c30fa
2 changed files with 10 additions and 10 deletions
  1. +6
    -6
      src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs
  2. +4
    -4
      src/Discord.Net.Core/Entities/Users/IConnection.cs

+ 6
- 6
src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs View File

@@ -8,26 +8,26 @@ namespace Discord
/// <summary>
/// Gets the id of the app.
/// </summary>
public ulong Id { get; }
ulong Id { get; }
/// <summary>
/// Gets the name of the app.
/// </summary>
public string Name { get; }
string Name { get; }
/// <summary>
/// Gets the icon hash of the app.
/// </summary>
public string Icon { get; }
string Icon { get; }
/// <summary>
/// Gets the description of the app.
/// </summary>
public string Description { get; }
string Description { get; }
/// <summary>
/// Gets the summary of the app.
/// </summary>
public string Summary { get; }
string Summary { get; }
/// <summary>
/// Gets the bot associated with this application.
/// </summary>
public IUser Bot { get; }
IUser Bot { get; }
}
}

+ 4
- 4
src/Discord.Net.Core/Entities/Users/IConnection.cs View File

@@ -19,12 +19,12 @@ namespace Discord
/// <summary> Gets a <see cref="IReadOnlyCollection{T}"/> of integration parials. </summary>
IReadOnlyCollection<IIntegration> Integrations { get; }
/// <summary> Gets whether the connection is verified. </summary>
public bool Verified { get; }
bool Verified { get; }
/// <summary> Gets whether friend sync is enabled for this connection. </summary>
public bool FriendSync { get; }
bool FriendSync { get; }
/// <summary> Gets whether activities related to this connection will be shown in presence updates. </summary>
public bool ShowActivity { get; }
bool ShowActivity { get; }
/// <summary> Visibility of this connection. </summary>
public ConnectionVisibility Visibility { get; }
ConnectionVisibility Visibility { get; }
}
}

Loading…
Cancel
Save