using System.Collections.Generic; namespace Discord.WebSocket { /// /// Represents a generic WebSocket-based channel that is private to select recipients. /// public interface ISocketPrivateChannel : IPrivateChannel { new IReadOnlyCollection Recipients { get; } } }