image.go 288 B

12345678910111213
  1. package dto
  2. type ImageResponse struct {
  3. ID int `json:"id"`
  4. Image string `json:"image"`
  5. PlaceID *int `json:"place_id"`
  6. ThingID *int `json:"thing_id"`
  7. CreatedAt string `json:"created_at"`
  8. }
  9. type ImagesResponse struct {
  10. Images []ImageResponse `json:"images"`
  11. }