12345678910111213141516171819202122232425262728293031 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- /********************************************************************************
- ** Company: YC
- ** auth: CaoTing
- ** date: 2021\5
- ** desc: 手机验证码返回信息
- *******************************************************************************/
- namespace Studio.Scripts.HttpMessage
- {
- [System.Serializable]
- public class SMSCodeCallBackMessage : BaseHttpCallBackMessage
- {
- public SMSCodeCallBackData data;
- public SMSCodeCallBackMessage()
- {
- _messageType = MessageType.SmsCodeType;
- messageModuleType = MessageModuleType.Common;
- }
- }
- [System.Serializable]
- public struct SMSCodeCallBackData
- {
- /// <summary>
- /// 发送验证码次数
- /// </summary>
- public int num;
- }
- }
|