15 lines
382 B
Go
15 lines
382 B
Go
package responses
|
|
|
|
import "time"
|
|
|
|
type PostResponse struct {
|
|
Id string `json:"id"`
|
|
UserId string `json:"userId"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
type PostResponseList []*PostResponse
|