CityExploreApp / City Sights App / Models / BusinessSearch.swift
BusinessSearch.swift
Raw
//
//  BusinessSearch.swift
//  City Sights App
//
//  Created by Milos Ilic on 14.1.23..
//

import Foundation

struct BusinessSearch: Decodable {
    
    var businesses = [Business]()
    var total = 0
    var region = Region()
}

struct Region: Decodable {
    var center = Coordinate()
}