1234567891011121314151617181920212223242526272829303132333435363738394041 |
- namespace GxPress.Request.Admin
- {
-
-
-
- public class AdminSignUpRequest
- {
-
-
-
- public string Account { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
-
- public string Phone { get; set; }
-
-
-
-
- public string Email { get; set; }
-
-
-
-
- public string Sex { get; set; }
- }
- }
|