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