Files
netch/Netch/3rd/DNS/Protocol/IMessage.cs
Connection Refused b2ea730984 done
2019-12-02 19:51:12 +08:00

13 lines
203 B
C#

using System.Collections.Generic;
namespace DNS.Protocol
{
public interface IMessage
{
IList<Question> Questions { get; }
int Size { get; }
byte[] ToArray();
}
}