Skip to content

Commit

Permalink
[feat] : #8 SignInContract 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
1971123-seongmin committed Nov 6, 2024
1 parent c6ada3b commit 4ad46ca
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.sopt.and.presentation.utils.contract

class SignInContract {

data class SignInState(
val email: String = "",
val password: String = "",
var isPassWordVisibility: Boolean = false,
val loginStatus: Boolean? = null,
)

}

0 comments on commit 4ad46ca

Please sign in to comment.