mirror of
https://github.com/netchx/netch.git
synced 2026-03-30 19:09:48 +08:00
14 lines
335 B
C#
14 lines
335 B
C#
using DNS.Protocol.ResourceRecords;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DNS.Protocol
|
|
{
|
|
public interface IRequest : IMessage
|
|
{
|
|
int Id { get; set; }
|
|
IList<IResourceRecord> AdditionalRecords { get; }
|
|
OperationCode OperationCode { get; set; }
|
|
bool RecursionDesired { get; set; }
|
|
}
|
|
}
|