10 lines
205 B
Go
10 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"`
|
||
|
}
|