You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
-
-
-
- [Serializable]
- public class LoginRequest: WWWRequest
- {
- public string phone;
- public string code;
- }
-
- [Serializable]
- public class LoginResponse : WWWResponse
- {
- public string message;
- }
-
- [Serializable]
- public class CodeRequest: WWWRequest
- {
- public string phone;
- }
-
- [Serializable]
- public class CodeResponse : WWWResponse
- {
- public string message;
- public string error;
- }
-
-
- [Serializable]
- public class PayRequest: WWWRequest
- {
- public string phone;
- public int money;
- public string clientIp;
- }
-
- [Serializable]
- public class PayResponse : WWWResponse
- {
- public int code;
- public string data;
- public string message;
- }
|