mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
12 lines
207 B
Go
12 lines
207 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"`
|
||
|
}
|