VerificationCodeInfo.cs 311 B

1234567891011121314
  1. namespace ET
  2. {
  3. public class VerificationCodeInfo: Entity, IAwake, IDestroy
  4. {
  5. //有效截止时间(生成时候的时间+5分钟)
  6. public long EndTime;
  7. //验证码
  8. public string Code;
  9. //属于的账户--验证码归属标识
  10. public string Account;
  11. }
  12. }