Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tedgonzalez/fe5ad7be9a032be499c37a19d5110597 to your computer and use it in GitHub Desktop.
Save tedgonzalez/fe5ad7be9a032be499c37a19d5110597 to your computer and use it in GitHub Desktop.
struct FoodDelivery: Codable, Equatable {
struct Order: Codable, Equatable {
let name: String
let cost: String
}
let date: String
let orders: [Order]
let restaurantName: String
let totalCost: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment