13 lines
184 B
Go
13 lines
184 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type User struct {
|
||
|
ID uint64
|
||
|
Username string
|
||
|
Login string
|
||
|
PasswordHash []byte
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
}
|