using System.Collections.Generic;
namespace Discord.Rest
{
///
/// Represents a REST-based channel that is private to select recipients.
///
public interface IRestPrivateChannel : IPrivateChannel
{
///
/// Users that can access this channel.
///
new IReadOnlyCollection Recipients { get; }
}
}