40 lines
806 B
Go
40 lines
806 B
Go
// Code generated by ent, DO NOT EDIT.
|
|
package admin
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/mikestefanello/pagoda/ent/passwordtoken"
|
|
)
|
|
|
|
type PasswordToken struct {
|
|
Hash *string `form:"hash"`
|
|
UserID int `form:"user_id"`
|
|
CreatedAt *time.Time `form:"created_at"`
|
|
Abc *passwordtoken.Abc `form:"abc"`
|
|
}
|
|
|
|
type User struct {
|
|
Name string `form:"name"`
|
|
Email string `form:"email"`
|
|
Password *string `form:"password"`
|
|
Verified bool `form:"verified"`
|
|
CreatedAt *time.Time `form:"created_at"`
|
|
}
|
|
|
|
type EntityList struct {
|
|
Columns []string
|
|
Entities []EntityValues
|
|
HasNextPage bool
|
|
}
|
|
|
|
type EntityValues struct {
|
|
ID int
|
|
Values []string
|
|
}
|
|
|
|
type HandlerConfig struct {
|
|
ItemsPerPage int
|
|
PageQueryKey string
|
|
TimeFormat string
|
|
}
|