Skip to content

Instantly share code, notes, and snippets.

@Maruchin1
Created July 24, 2024 14:47
Show Gist options
  • Save Maruchin1/c9c528b901d8338656de1e3967789e4d to your computer and use it in GitHub Desktop.
Save Maruchin1/c9c528b901d8338656de1e3967789e4d to your computer and use it in GitHub Desktop.
import java.time.LocalDate
data class Product(
val id: String,
val name: String,
val description: String,
val price: Double,
val dateAdded: LocalDate,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment