You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
468 B
17 lines
468 B
namespace Ubiety.Dns.Core
|
|
{
|
|
/// <summary>
|
|
/// Additional resource record
|
|
/// </summary>
|
|
public class AdditionalRR : ResourceRecord
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AdditionalRR" /> class
|
|
/// </summary>
|
|
/// <param name="br"><see cref="ResourceRecord" /> for the record data</param>
|
|
public AdditionalRR(RecordReader br)
|
|
: base(br)
|
|
{
|
|
}
|
|
}
|
|
}
|