added uistate

This commit is contained in:
lbarraga 2023-04-08 22:02:10 +02:00
parent 1410a4f6d2
commit 263fa8a3ef

View file

@ -0,0 +1,7 @@
package be.ugent.sel.studeez.screens.sign_up
data class SignUpUiState(
val email: String = "",
val password: String = "",
val repeatPassword: String = ""
)