13 lines
384 B
Go
13 lines
384 B
Go
package request
|
|
|
|
type PublicRegister struct {
|
|
Username string `json:"username" binding:"required,min=3,max=64"`
|
|
Password string `json:"password" binding:"required,min=6,max=128"`
|
|
WelcomePhrase string `json:"welcomePhrase" binding:"required,min=1,max=255"`
|
|
|
|
Captcha string `json:"captcha"`
|
|
CaptchaId string `json:"captchaId"`
|
|
|
|
InviteCode string `json:"inviteCode"`
|
|
}
|