Skip to content

Instantly share code, notes, and snippets.

@mzeeshanid
Last active December 30, 2020 10:41
Show Gist options
  • Save mzeeshanid/aa4bc2d968b2c22aa8c9f59003d68224 to your computer and use it in GitHub Desktop.
Save mzeeshanid/aa4bc2d968b2c22aa8c9f59003d68224 to your computer and use it in GitHub Desktop.
class declaration for models
class Product {
var id: Int
var name: String
var image: String
var variants: [Variant]
}
class Variant {
var id: Int
var name: String
var price: Double
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment