A_K/N_1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface LoginViewModel { | |
/* Inputs */ | |
val userName: Subject<String> | |
val password: Subject<String> | |
val passwordRepetition: Subject<String> | |
val login: Trigger | |
/* Outputs */ | |
val isLogginIn: Observable<Boolean> | |
val loginResult: Observable<LoginResult> | |
val userNameValidation: Observable<UserNameValidation> | |
val passwordValid: Observable<PasswordValidation> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment