using System.Net;
namespace DnsClient.Protocol
{
///
/// A represending an IPv6 .
///
/// A 128 bit IPv6 address is encoded in the data portion of an AAAA
/// resource record in network byte order(high-order byte first).
///
///
/// RFC 3596
public class AaaaRecord : AddressRecord
{
///
/// Initializes a new instance of the class.
///
///
public AaaaRecord(ResourceRecordInfo info, IPAddress address) : base(info, address)
{
}
}
}