GiphyListResponse.swift 163 B

1234567891011
  1. //
  2. // GiphyListResponse.swift
  3. import Foundation
  4. struct GiphyListResponse: Codable {
  5. let data: [GifObject]
  6. let pagination: GifListPagination
  7. }