GiphyListResponse.swift 240 B

123456789101112131415
  1. //
  2. // GiphyListResponse.swift
  3. // LiveLikeGiphyChallenge
  4. //
  5. // Created by Ljupco Nastevski on 30.1.22.
  6. //
  7. import Foundation
  8. struct GiphyListResponse: Codable {
  9. let data: [GifObject]
  10. let pagination: GifListPagination
  11. }