From 7f04af4db39df1fcad48975b12f5ae68416beeb0 Mon Sep 17 00:00:00 2001 From: Brandon Smith Date: Sun, 30 Aug 2015 16:55:16 -0300 Subject: [PATCH] Unhid PrivateChannel --- src/Discord.Net/User.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net/User.cs b/src/Discord.Net/User.cs index 4d48440d1..870341130 100644 --- a/src/Discord.Net/User.cs +++ b/src/Discord.Net/User.cs @@ -31,8 +31,8 @@ namespace Discord /// Returns the string "<@Id>" to be used as a shortcut when including mentions in text. public string Mention => $"<@{Id}>"; - internal string PrivateChannelId { get; internal set; } - internal Channel PrivateChannel => _client.GetChannel(PrivateChannelId); + public string PrivateChannelId { get; set; } + public Channel PrivateChannel => _client.GetChannel(PrivateChannelId); //TODO: Add voice /// Returns the time this user last sent a message.