123456789101112131415161718192021222324252627 |
- //
- // GifImage.swift
- // LiveLikeGiphyChallenge
- //
- // Created by Ljupco Nastevski on 30.1.22.
- //
- import Foundation
- struct GifImage: Codable {
-
- let url: String
- let width: String
- let height: String
- let size: String?
- }
- struct GifImages: Codable {
-
- let fixedWidth: GifImage
- enum CodingKeys: String, CodingKey {
- case fixedWidth = "fixed_width"
- }
-
- }
|