Files
Discord.Net/ref/Entities/Channels/IPrivateChannel.cs
2016-02-26 05:22:01 -04:00

9 lines
210 B
C#

namespace Discord
{
public interface IPrivateChannel : IChannel
{
/// <summary> Gets the recipient of the messages in this private channel. </summary>
User Recipient { get; }
}
}