package __PACKAGE__.domain.model // Generic domain model for the example `home` feature. Replace with your own entities. data class Item( val id: String, val title: String, val subtitle: String, )