GifObject.swift 227 B

12345678910111213141516
  1. //
  2. // GifObject.swift
  3. // LiveLikeGiphyChallenge
  4. //
  5. // Created by Ljupco Nastevski on 30.1.22.
  6. //
  7. import Foundation
  8. struct GifObject: Codable {
  9. let id: String
  10. let title: String
  11. let images: GifImages
  12. }