
* refact: generalized back end structs * refact: fixed front end type, removed dead code * removed test image folder * refact: removed dead structs
12 lines
292 B
Go
12 lines
292 B
Go
package entities
|
|
|
|
type User struct {
|
|
Id string `json:"id"`
|
|
LocalId string `json:"localId"`
|
|
FirstName string `json:"firstName"`
|
|
LastName string `json:"lastName"`
|
|
AvatarPath string `json:"avatarPath"`
|
|
AuthToken string `json:"authToken"`
|
|
Email string `json:"email"`
|
|
}
|