16 lines
248 B
Go
16 lines
248 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type User struct {
|
||
|
|
ID int64
|
||
|
|
Email string
|
||
|
|
Phone *string
|
||
|
|
PasswordHash string
|
||
|
|
Name string
|
||
|
|
AvatarURL *string
|
||
|
|
Status string
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|