2019-12-08 03:59:58 -05:00
|
|
|
package model
|
|
|
|
|
|
|
|
type User struct {
|
2020-12-19 10:11:16 -05:00
|
|
|
Common
|
2024-10-20 02:05:43 -04:00
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty" gorm:"type:char(72)"`
|
2019-12-08 03:59:58 -05:00
|
|
|
}
|