mirror of
https://github.com/nezhahq/nezha.git
synced 2025-03-14 09:38:14 -04:00
7 lines
151 B
Go
7 lines
151 B
Go
package model
|
|
|
|
type UserForm struct {
|
|
Username string `json:"username,omitempty"`
|
|
Password string `json:"password,omitempty" gorm:"type:char(72)"`
|
|
}
|