10 lines
208 B
Go
10 lines
208 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type User struct {
|
||
|
UserId *int32 `json:"user_id" db:"user_id"`
|
||
|
Role *Role `json:"role" db:"role"`
|
||
|
UpdatedAt *time.Time `json:"updated_at" db:"updated_at"`
|
||
|
}
|