GifImage.swift 322 B

1234567891011121314151617181920212223
  1. //
  2. // GifImage.swift
  3. import Foundation
  4. struct GifImage: Codable {
  5. let url: String
  6. let width: String
  7. let height: String
  8. let size: String?
  9. }
  10. struct GifImages: Codable {
  11. let fixedWidth: GifImage
  12. enum CodingKeys: String, CodingKey {
  13. case fixedWidth = "fixed_width"
  14. }
  15. }