15 lines
355 B
Go
15 lines
355 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
Password string `json:"password"`
|
|
LastName string `json:"last_name"`
|
|
Email string `json:"email"`
|
|
FirstName string `json:"first_name"`
|
|
Salt string `json:"-"`
|
|
ID int64 `json:"id"`
|
|
}
|