1234567891011121314151617181920212223 |
- //
- // GifImage.swift
- 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"
- }
-
- }
|