using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TellerSystem.Communication.Package { /// /// 支持的报文组装方式 /// public enum PackageOptions { /// /// 客户端组组解包 /// PackageOnClient, /// /// 服务端组组解包 /// PackageOnServer } }