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 { /// /// 发送验证码次数 /// public int num; } }