Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tedgonzalez/70019eb203d68036e2672c2e365ea519 to your computer and use it in GitHub Desktop.
Save tedgonzalez/70019eb203d68036e2672c2e365ea519 to your computer and use it in GitHub Desktop.
struct PassengerDelivery: Codable, Equatable {
struct CarType: Codable, Equatable {
let name: String
let distanceFare: String
let timeFare: String
}
let carType: CarType
let date: String
let distance: String
let time: String
let totalCost: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment