7 lines
150 B
Kotlin
7 lines
150 B
Kotlin
package com.example.tvcontroller.ui
|
|
|
|
import com.example.tvcontroller.Screen
|
|
|
|
data class AppUiState(
|
|
val currentScreen: Screen = Screen.Settings,
|
|
) |