LibreTube/app/src/main/java/com/github/libretube/obj/BottomSheetItem.kt

8 lines
147 B
Kotlin
Raw Normal View History

2022-09-10 19:43:02 +05:30
package com.github.libretube.obj
data class BottomSheetItem(
val title: String,
2022-09-10 20:17:45 +05:30
val drawable: Int,
val currentValue: String? = null
2022-09-10 19:43:02 +05:30
)