Created
May 10, 2021 00:56
-
-
Save KrauserHuang/4a93486f622efca4c7716e4aba849f91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct PostOrder: Codable { | |
let data: OrderInfo | |
} | |
struct OrderInfo: Codable { | |
let orderer: String | |
let drinkName: String | |
let sizeLevel: String | |
let iceLevel: String | |
let sugarLevel: String | |
let extraToppings: String | |
let totalPrice: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment