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
450 B

1 month ago
namespace Ubiety.Dns.Core
{
/// <summary>
/// Answer resource record
/// </summary>
public class AnswerRR : ResourceRecord
{
/// <summary>
/// Initializes a new instance of the <see cref="AnswerRR" /> class
/// </summary>
/// <param name="br"><see cref="RecordReader" /> for the record data</param>
public AnswerRR(RecordReader br)
: base(br)
{
}
}
}