14 lines
198 B
Swift
14 lines
198 B
Swift
//
|
|
// OfferPictureUrls.swift
|
|
// AlloVictor
|
|
//
|
|
// Created by Bodinaud Victor on 18/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct OfferPictureUrls: Codable {
|
|
let large: String
|
|
let small: String
|
|
}
|