tv-controller-android/app/src/main/java/com/example/tvcontroller/ui/AppUiState.kt

7 lines
150 B
Kotlin

package com.example.tvcontroller.ui
import com.example.tvcontroller.Screen
data class AppUiState(
val currentScreen: Screen = Screen.Settings,
)