Skip to content

Instantly share code, notes, and snippets.

@FannyDemey
Created September 12, 2023 09:06
Show Gist options
  • Save FannyDemey/3b9665d07db1ab7ad59ada3f2e597da3 to your computer and use it in GitHub Desktop.
Save FannyDemey/3b9665d07db1ab7ad59ada3f2e597da3 to your computer and use it in GitHub Desktop.
data class Product(
val id: String,
val productName: String,
val productPrice: Float,
val imageUrl: String,
val maxQuantity: Int,
val quantity: Int = 0,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment