image.go 293 B

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