9 lines
210 B
C#
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; }
|
|
}
|
|
}
|