init repo
This commit is contained in:
17
defs/entity.go
Normal file
17
defs/entity.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package defs
|
||||
|
||||
type User struct {
|
||||
UserID string `json:"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"`
|
||||
// }
|
||||
Reference in New Issue
Block a user