From e0e73c30fa6c1bf2de4807784677d17da5e6071a Mon Sep 17 00:00:00 2001 From: FeroxFoxxo Date: Sat, 5 Mar 2022 15:21:46 +1300 Subject: [PATCH] removed public identitiers from app and connection --- .../Entities/Integrations/IIntegrationApplication.cs | 12 ++++++------ src/Discord.Net.Core/Entities/Users/IConnection.cs | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs b/src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs index 137d1f9e4..9085ae686 100644 --- a/src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs +++ b/src/Discord.Net.Core/Entities/Integrations/IIntegrationApplication.cs @@ -8,26 +8,26 @@ namespace Discord /// /// Gets the id of the app. /// - public ulong Id { get; } + ulong Id { get; } /// /// Gets the name of the app. /// - public string Name { get; } + string Name { get; } /// /// Gets the icon hash of the app. /// - public string Icon { get; } + string Icon { get; } /// /// Gets the description of the app. /// - public string Description { get; } + string Description { get; } /// /// Gets the summary of the app. /// - public string Summary { get; } + string Summary { get; } /// /// Gets the bot associated with this application. /// - public IUser Bot { get; } + IUser Bot { get; } } } diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs index 7bf7c5994..0f38931f9 100644 --- a/src/Discord.Net.Core/Entities/Users/IConnection.cs +++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs @@ -19,12 +19,12 @@ namespace Discord /// Gets a of integration parials. IReadOnlyCollection Integrations { get; } /// Gets whether the connection is verified. - public bool Verified { get; } + bool Verified { get; } /// Gets whether friend sync is enabled for this connection. - public bool FriendSync { get; } + bool FriendSync { get; } /// Gets whether activities related to this connection will be shown in presence updates. - public bool ShowActivity { get; } + bool ShowActivity { get; } /// Visibility of this connection. - public ConnectionVisibility Visibility { get; } + ConnectionVisibility Visibility { get; } } }