123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace Studio.Scripts.HttpMessage
- {
- public class CaptchaCodeMessage : BaseHttpMessage
- {
- public CaptchaCodeMessage()
- {
- messageModuleType = MessageModuleType.Common;
- methodType = HttpMethodType.Get;
- _path = "v1/captchaCode";
- headers = new Dictionary<string, string>();
- }
- }
- }
|