craban/server/model/post.go
2021-09-13 23:39:16 +02:00

9 lines
205 B
Go

package model
type Post struct {
ID int `json:"id"`
UserID int `json:"user_id"`
GameID int `json:"game_id"`
CreatedAt int `json:"createdat"`
Body string `json:"body"`
}