13 lines
288 B
Go
13 lines
288 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
// User represents a registered user.
|
||
|
|
type User struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
Email string `json:"email"`
|
||
|
|
PasswordHash string `json:"-"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at"`
|
||
|
|
}
|