diff --git a/src/Discord.Net.Core/Entities/Messages/MessageActivity.cs b/src/Discord.Net.Core/Entities/Messages/MessageActivity.cs
index d19e6a8e9..b539b8f9b 100644
--- a/src/Discord.Net.Core/Entities/Messages/MessageActivity.cs
+++ b/src/Discord.Net.Core/Entities/Messages/MessageActivity.cs
@@ -13,11 +13,11 @@ namespace Discord
///
/// Gets the type of activity of this message.
///
- public MessageActivityType Type { get; set; }
+ public MessageActivityType Type { get; internal set; }
///
/// Gets the party ID of this activity, if any.
///
- public string PartyId { get; set; }
+ public string PartyId { get; internal set; }
private string DebuggerDisplay
=> $"{Type}{(string.IsNullOrWhiteSpace(PartyId) ? "" : $" {PartyId}")}";
diff --git a/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs b/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs
index 960d1700f..05616cb59 100644
--- a/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs
+++ b/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs
@@ -13,19 +13,19 @@ namespace Discord
///
/// Gets the snowflake ID of the application.
///
- public ulong Id { get; set; }
+ public ulong Id { get; internal set; }
///
/// Gets the ID of the embed's image asset.
///
- public string CoverImage { get; set; }
+ public string CoverImage { get; internal set; }
///
/// Gets the application's description.
///
- public string Description { get; set; }
+ public string Description { get; internal set; }
///
/// Gets the ID of the application's icon.
///
- public string Icon { get; set; }
+ public string Icon { get; internal set; }
///
/// Gets the Url of the application's icon.
///
@@ -34,7 +34,7 @@ namespace Discord
///
/// Gets the name of the application.
///
- public string Name { get; set; }
+ public string Name { get; internal set; }
private string DebuggerDisplay
=> $"{Name} ({Id}): {Description}";
public override string ToString()