using System.Collections; using System.Collections.Generic; namespace XFramework.NetOuter { //消息建造器 public interface IProtoBuilder { //组装待发送的消息 ProtocolBase GetProto(); } }