amethyst/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/AccountState.kt

10 wiersze
284 B
Kotlin
Czysty Zwykły widok Historia

2023-01-11 18:31:20 +00:00
package com.vitorpamplona.amethyst.ui.screen
import com.vitorpamplona.amethyst.model.Account
sealed class AccountState {
object LoggedOff: AccountState()
class LoggedInViewOnly(val account: Account): AccountState()
class LoggedIn(val account: Account): AccountState()
}