Created
September 12, 2023 09:06
-
-
Save FannyDemey/3b9665d07db1ab7ad59ada3f2e597da3 to your computer and use it in GitHub Desktop.
This file contains 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
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