SMSCodeCallBackMessage.cs 884 B

12345678910111213141516171819202122232425262728293031
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. /********************************************************************************
  5. ** Company: YC
  6. ** auth: CaoTing
  7. ** date: 2021\5
  8. ** desc: 手机验证码返回信息
  9. *******************************************************************************/
  10. namespace Studio.Scripts.HttpMessage
  11. {
  12. [System.Serializable]
  13. public class SMSCodeCallBackMessage : BaseHttpCallBackMessage
  14. {
  15. public SMSCodeCallBackData data;
  16. public SMSCodeCallBackMessage()
  17. {
  18. _messageType = MessageType.SmsCodeType;
  19. messageModuleType = MessageModuleType.Common;
  20. }
  21. }
  22. [System.Serializable]
  23. public struct SMSCodeCallBackData
  24. {
  25. /// <summary>
  26. /// 发送验证码次数
  27. /// </summary>
  28. public int num;
  29. }
  30. }