Files
atom/modules/system/dto/captcha.go
2023-02-01 18:50:59 +08:00

9 lines
260 B
Go

package dto
type SysCaptchaResponse struct {
CaptchaId string `json:"captcha_id,omitempty"`
PicPath string `json:"pic_path,omitempty"`
CaptchaLength int `json:"captcha_length,omitempty"`
OpenCaptcha bool `json:"open_captcha,omitempty"`
}