12345678910111213141516171819202122232425262728 |
- namespace Long.Common.Basedata
- {
-
-
-
- public class RegistInput
- {
-
-
-
- public string UserName { get; set; } = string.Empty;
-
-
-
- public string Password { get; set; } = string.Empty;
-
-
-
- public string Code { get; set; } = string.Empty;
-
-
-
- public string PromotionCode { get; set; } = string.Empty;
- }
- }
|