- Added analytics and crashlytics. - Completed add address - Completed payment , added callback handler
16 lines
237 B
Swift
16 lines
237 B
Swift
//
|
|
// CartDataCache.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 29/07/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class CartDataCache{
|
|
|
|
static var cartListData = [CartListingDM.ResultData]()
|
|
static var addressData = [AddressListDM]()
|
|
|
|
}
|