mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 19:48:12 +08:00
35 lines
856 B
Go
35 lines
856 B
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"`
|
|
}
|
|
|
|
type MfaCredential struct {
|
|
Secret string `json:"secret"`
|
|
Code string `json:"code"`
|
|
Interval string `json:"interval"`
|
|
}
|
|
|
|
type Login struct {
|
|
Name string `json:"name"`
|
|
Password string `json:"password"`
|
|
IgnoreCaptcha bool `json:"ignoreCaptcha"`
|
|
Captcha string `json:"captcha"`
|
|
CaptchaID string `json:"captchaID"`
|
|
AuthMethod string `json:"authMethod"`
|
|
Language string `json:"language"`
|
|
}
|
|
|
|
type MFALogin struct {
|
|
Name string `json:"name"`
|
|
Password string `json:"password"`
|
|
Code string `json:"code"`
|
|
AuthMethod string `json:"authMethod"`
|
|
}
|