craban/server/model/post.go

10 lines
205 B
Go
Raw Normal View History

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"`
}