-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- ํ์ ํํด ๊ธฐ๋ฅ ์ถ๊ฐ - ์ฌ๋ผ์ด๋ ๋์์ธ ๋ณ๊ฒฝ - ๋ฅ๋งํฌ ์ง์ ๋ฐฉ์ ๋ณ๊ฒฝ (11๋ฒ๊ฐ์ ๋ค์ด๋ฒ ์ค๋งํธ์คํ ์ด) - ์ธ์ฑ ์ ๋ฐ์ดํธ ๊ตฌํ - ์ํ ์ต๋ ๋ฑ๋ก ๊ฐ์ ์ ํ - ๋น๋ฐ๋ฒํธ ์ฐพ๊ธฐ, ์ด๋ฉ์ผ ์ธ์ฆ ๊ตฌํ Co-Authored-By: ootr47 <[email protected]> Co-Authored-By: EunhoKang <[email protected]> Co-Authored-By: ByeongIk Choi <[email protected]> Co-Authored-By: ์๋ฌธ๊ธฐ <[email protected]>
- Loading branch information
1 parent
f818ce8
commit 7e2ac77
Showing
101 changed files
with
3,309 additions
and
415 deletions.
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/deleteaccount/DeleteAccountRequest.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package app.priceguard.data.dto.deleteaccount | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class DeleteAccountRequest( | ||
val email: String, | ||
val password: String | ||
) |
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/deleteaccount/DeleteAccountResponse.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package app.priceguard.data.dto.deleteaccount | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class DeleteAccountResponse( | ||
val statusCode: Int, | ||
val message: String | ||
) |
10 changes: 10 additions & 0 deletions
10
android/app/src/main/java/app/priceguard/data/dto/isverified/IsEmailVerifiedResponse.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package app.priceguard.data.dto.isverified | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class IsEmailVerifiedResponse( | ||
val statusCode: Int, | ||
val message: String, | ||
val verified: Boolean? = null | ||
) |
8 changes: 8 additions & 0 deletions
8
android/app/src/main/java/app/priceguard/data/dto/password/ResetPasswordRequest.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package app.priceguard.data.dto.password | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class ResetPasswordRequest( | ||
val password: String | ||
) |
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/password/ResetPasswordResponse.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package app.priceguard.data.dto.password | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class ResetPasswordResponse( | ||
val statusCode: Int, | ||
val message: String | ||
) |
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
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
Oops, something went wrong.