Last active
March 15, 2019 20:22
-
-
Save sellmair/ddb1cb824c3e074e803eb44dadd095f8 to your computer and use it in GitHub Desktop.
A_K/N_1
This file contains hidden or 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