CaptchaCodeMessage.cs 444 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Studio.Scripts.HttpMessage
  5. {
  6. public class CaptchaCodeMessage : BaseHttpMessage
  7. {
  8. public CaptchaCodeMessage()
  9. {
  10. messageModuleType = MessageModuleType.Common;
  11. methodType = HttpMethodType.Get;
  12. _path = "v1/captchaCode";
  13. headers = new Dictionary<string, string>();
  14. }
  15. }
  16. }