12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.User
- {
-
-
-
- public class UserUpdateEmailRequest
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string Code { get; set; }
- }
- }
|