mirror of
https://github.com/netchx/netch.git
synced 2026-04-03 19:35:10 +08:00
13 lines
203 B
C#
13 lines
203 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DNS.Protocol
|
|
{
|
|
public interface IMessage
|
|
{
|
|
IList<Question> Questions { get; }
|
|
|
|
int Size { get; }
|
|
byte[] ToArray();
|
|
}
|
|
}
|