Nikky
sealed class ItemType(val type: Int) { object Header: ItemType(0) data class CartItem(val cart: Cart): ItemType(1) }