mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
14 lines
397 B
Go
14 lines
397 B
Go
package model
|
|
|
|
type UserForm struct {
|
|
Role uint8 `json:"role,omitempty"`
|
|
Username string `json:"username,omitempty"`
|
|
Password string `json:"password,omitempty" gorm:"type:char(72)"`
|
|
}
|
|
|
|
type ProfileForm struct {
|
|
OriginalPassword string `json:"original_password,omitempty"`
|
|
NewUsername string `json:"new_username,omitempty"`
|
|
NewPassword string `json:"new_password,omitempty"`
|
|
}
|