Skip to content

Instantly share code, notes, and snippets.

@Raiden18
Last active May 10, 2022 12:19
Show Gist options
  • Save Raiden18/2bb7fee4a2e47db8589506e598d08f22 to your computer and use it in GitHub Desktop.
Save Raiden18/2bb7fee4a2e47db8589506e598d08f22 to your computer and use it in GitHub Desktop.
Information Expert. Domain Classes
data class Cart(
val products: List<Product>
)
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