mirror of
https://github.com/1Panel-dev/KubePi.git
synced 2025-10-06 15:57:03 +08:00
19 lines
446 B
Go
19 lines
446 B
Go
package docs
|
|
|
|
type UserCreate struct {
|
|
Name string `json:"name"`
|
|
NickName string `json:"nickName" storm:"index"`
|
|
Email string `json:"email" storm:"unique"`
|
|
IsAdmin bool `json:"isAdmin"`
|
|
Authenticate Authenticate `json:"authenticate"`
|
|
Mfa Mfa `json:"mfa"`
|
|
}
|
|
|
|
type Authenticate struct {
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type Mfa struct {
|
|
Enable bool `json:"enable"`
|
|
}
|