Updated user struct
parent
43af5221f4
commit
adb0a57a3c
|
@ -1,11 +1,13 @@
|
||||||
package structs
|
package structs
|
||||||
|
|
||||||
import "time"
|
import (
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
// User represents a user
|
// User represents a user
|
||||||
// swagger:model
|
// swagger:model
|
||||||
type User struct {
|
type User struct {
|
||||||
ID string
|
Id string
|
||||||
Hashtag string
|
Hashtag string
|
||||||
Name string
|
Name string
|
||||||
Email string
|
Email string
|
||||||
|
@ -13,9 +15,9 @@ type User struct {
|
||||||
/*Rank int
|
/*Rank int
|
||||||
AvatarUrl string
|
AvatarUrl string
|
||||||
Location string
|
Location string
|
||||||
Description string
|
Description string */
|
||||||
Language string
|
LanguageId int
|
||||||
Cash int
|
/* Cash int
|
||||||
Posts int
|
Posts int
|
||||||
Followers int
|
Followers int
|
||||||
Following int */
|
Following int */
|
||||||
|
|
Loading…
Reference in New Issue