diff --git a/src/Discord.Net.Core/Entities/Users/IThreadUser.cs b/src/Discord.Net.Core/Entities/Users/IThreadUser.cs
index 76f6ffc01..6ee267991 100644
--- a/src/Discord.Net.Core/Entities/Users/IThreadUser.cs
+++ b/src/Discord.Net.Core/Entities/Users/IThreadUser.cs
@@ -2,7 +2,7 @@ using System;
namespace Discord
{
- public interface IThreadUser
+ public interface IThreadUser : IMentionable
{
///
/// Gets the this user is in.
@@ -13,5 +13,8 @@ namespace Discord
/// Gets the timestamp for when this user joined this thread.
///
DateTimeOffset ThreadJoinedAt { get; }
+
+ ///
+ string Mention { get; }
}
}
diff --git a/src/Discord.Net.Rest/Entities/Users/RestThreadUser.cs b/src/Discord.Net.Rest/Entities/Users/RestThreadUser.cs
index eee1f6ced..d935a3d93 100644
--- a/src/Discord.Net.Rest/Entities/Users/RestThreadUser.cs
+++ b/src/Discord.Net.Rest/Entities/Users/RestThreadUser.cs
@@ -7,7 +7,7 @@ namespace Discord.Rest
///
/// Represents a thread user received over the REST api.
///
- public class RestThreadUser : RestEntity, IThreadUser, IMentionable
+ public class RestThreadUser : RestEntity, IThreadUser
{
///
public IThreadChannel Thread { get; }