Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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;
- }
|