19 lines
501 B
Go
19 lines
501 B
Go
package defs
|
|
|
|
type User struct {
|
|
ID int64 `json:"user_id"`
|
|
AppleUserID string `json:"apple_user_id"`
|
|
Name string `json:"name"`
|
|
Username string `json:"username"`
|
|
Email string `json:"email"`
|
|
IsPrivateEmail bool `json:"is_private_email"`
|
|
EmailVerified bool `json:"email_verified"`
|
|
// Tenants []Tenant
|
|
}
|
|
|
|
// type Tenant struct {
|
|
// ID string `json:"id"`
|
|
// Name string `json:"name"`
|
|
// Description string `json:"description"`
|
|
// }
|