using axXez.TS3.Protocol;
namespace axXez.TS3
{
/// Represents a TeamSpeak channel on the connected server.
public class Channel : ChannelInfo
{
/// The server connection this channel belongs to.
public ServerConnection Connection { get; private set; }
internal Channel(ServerConnection connection, ChannelInfo channelInfo) : base(channelInfo.AppliedData)
{
Connection = connection;
}
}
}