Added APIUser struct

master
Alex 2021-08-10 12:33:56 +02:00
parent 405ce69cda
commit 4026a40fa1
1 changed files with 8 additions and 0 deletions

View File

@ -26,3 +26,11 @@ type User struct {
CreatedAt time.Time
UpdatedAt time.Time
}
type APIUser struct {
Id string
Hashtag string
Name string
AvatarUrl string
Points int
}