data class Item(val id: Int, val name: String) fun main() { println(Item(1, "SAMPLE")) }