123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- using GxPress.Common.Validation;
- namespace GxPress.Request.User
- {
-
-
-
- public class UserUpdatePhoneRequest
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- [Mobile]
- public string Phone { get; set; }
-
-
-
- [MaxLength(6)]
- public string Code { get; set; }
- }
- }
|