Last active
May 10, 2022 12:19
-
-
Save Raiden18/2bb7fee4a2e47db8589506e598d08f22 to your computer and use it in GitHub Desktop.
Information Expert. Domain Classes
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 Cart( | |
val products: List<Product> | |
) |
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 title: String, | |
val price: BigDecimal | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment