Skip to content

Commit

Permalink
feat: 회원가입 위한 데이터 클래스 추가 #13
Browse files Browse the repository at this point in the history
  • Loading branch information
bamin0422 committed Oct 5, 2023
1 parent 20e76ff commit d23f3b0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/main/java/com/owori/android/auth/data/AuthProvider.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.owori.android.auth.data

enum class AuthProvider(val value: String) {
KAKAO("KAKAO"), GOOGLE("GOOGLE")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.owori.android.auth.data

data class MemberRequest (
val token: String,
val authProvider: AuthProvider
)

0 comments on commit d23f3b0

Please # to comment.