7 lines
166 B
Go
7 lines
166 B
Go
|
package models
|
||
|
|
||
|
type AnthroveUser struct {
|
||
|
UserID AnthroveUserID `json:"user_id"`
|
||
|
Relationship []AnthroveUserRelationship `json:"relationship"`
|
||
|
}
|