-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: 장소 등록을 검수할 수 있도록 검수중으로 등록한다 * refactor: 변경된 API 명세 반영 * refactor: string 변경 * feat: 장소등록 성공시 토스트 메시지를 띄워줌
- Loading branch information
Showing
5 changed files
with
37 additions
and
3 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
20 changes: 20 additions & 0 deletions
20
android/app/src/main/java/com/now/naaga/data/remote/dto/PostPlaceDto.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,20 @@ | ||
package com.now.naaga.data.remote.dto | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class PostPlaceDto( | ||
@SerialName("id") | ||
val id: Long, | ||
@SerialName("name") | ||
val name: String, | ||
@SerialName("coordinate") | ||
val coordinate: CoordinateDto, | ||
@SerialName("imageUrl") | ||
val imageUrl: String, | ||
@SerialName("description") | ||
val description: String, | ||
@SerialName("registeredPlayerId") | ||
val registeredPlayerId: Long, | ||
) |
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