Files
Woka_Native_iOS/WOKA/Cart/Model/AddressListDM.swift
BilalKhanWDI 357b683650 - Made address list view controller
- Made address cell
- Added address Get api.
- Completed create order api.
- updated to get the link url.
- Updated end points.
2024-07-25 20:06:58 +05:30

26 lines
561 B
Swift

//
// AddressListDM.swift
// WOKA
//
// Created by MacBook Pro on 25/07/24.
//
import Foundation
// MARK: - AddressListDM
struct AddressListDM: Codable {
let id: Int?
let addressName, addressType, address, city: String?
let state, pincode, country, phoneNo: String?
let email: String?
enum CodingKeys: String, CodingKey {
case id
case addressName = "address_name"
case addressType = "address_type"
case address, city, state, pincode, country
case phoneNo = "phone_no"
case email
}
}