diff --git a/src/Discord.Net.Core/Entities/Invites/IInvite.cs b/src/Discord.Net.Core/Entities/Invites/IInvite.cs index a023749c2..73555e453 100644 --- a/src/Discord.Net.Core/Entities/Invites/IInvite.cs +++ b/src/Discord.Net.Core/Entities/Invites/IInvite.cs @@ -13,10 +13,15 @@ namespace Discord IChannel Channel { get; } /// Gets the id of the channel this invite is linked to. ulong ChannelId { get; } + /// Gets the name of the channel this invite is linked to. + string ChannelName { get; } + /// Gets the guild this invite is linked to. IGuild Guild { get; } /// Gets the id of the guild this invite is linked to. ulong GuildId { get; } + /// Gets the name of the guild this invite is linked to. + string GuildName { get; } /// Accepts this invite and joins the target guild. This will fail on bot accounts. Task AcceptAsync(RequestOptions options = null);