18 lines
277 B
Go
18 lines
277 B
Go
|
|
package usermodel
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type UserData struct {
|
||
|
|
Uid string
|
||
|
|
Username string
|
||
|
|
Password string
|
||
|
|
Email string
|
||
|
|
Telephone string
|
||
|
|
Avatar_url string
|
||
|
|
Gender string
|
||
|
|
Bio string
|
||
|
|
Birth_date time.Time
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|