mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
40 lines
1 KiB
Go
40 lines
1 KiB
Go
|
package dto
|
||
|
|
||
|
type CaptchaResponse struct {
|
||
|
CaptchaID string `json:"captchaID"`
|
||
|
ImagePath string `json:"imagePath"`
|
||
|
}
|
||
|
|
||
|
type UserLoginInfo struct {
|
||
|
Name string `json:"name"`
|
||
|
Token string `json:"token"`
|
||
|
MfaStatus string `json:"mfaStatus"`
|
||
|
MfaSecret string `json:"mfaSecret"`
|
||
|
}
|
||
|
|
||
|
type MfaCredential struct {
|
||
|
Secret string `json:"secret"`
|
||
|
Code string `json:"code"`
|
||
|
}
|
||
|
|
||
|
type Login struct {
|
||
|
Name string `json:"name" validate:"name,required"`
|
||
|
Password string `json:"password" validate:"required"`
|
||
|
Captcha string `json:"captcha"`
|
||
|
CaptchaID string `json:"captchaID"`
|
||
|
AuthMethod string `json:"authMethod"`
|
||
|
}
|
||
|
|
||
|
type MFALogin struct {
|
||
|
Name string `json:"name" validate:"name,required"`
|
||
|
Password string `json:"password" validate:"required"`
|
||
|
Secret string `json:"secret" validate:"required"`
|
||
|
Code string `json:"code"`
|
||
|
AuthMethod string `json:"authMethod"`
|
||
|
}
|
||
|
|
||
|
type InitUser struct {
|
||
|
Name string `json:"name" validate:"required"`
|
||
|
Password string `json:"password" validate:"required"`
|
||
|
}
|