using System.Collections.Generic; namespace ET { /// /// 验证码组件,挂在scene上 /// public class VerificationCodeComponent : Entity, IAwake, IDestroy { //<验证码,验证码实体>---每次查询的时候,清理一次过期的验证码 public Dictionary VerificationCodeDic = new Dictionary(); } }