mirror of
https://github.com/netchx/netch.git
synced 2026-03-28 18:59:46 +08:00
13 lines
227 B
C#
13 lines
227 B
C#
namespace DNS.Protocol
|
|
{
|
|
public interface IMessageEntry
|
|
{
|
|
Domain Name { get; }
|
|
RecordType Type { get; }
|
|
RecordClass Class { get; }
|
|
|
|
int Size { get; }
|
|
byte[] ToArray();
|
|
}
|
|
}
|