Skip to content

Commit

Permalink
Merge pull request #351 from Runnect/feature/fix-draw-course-format
Browse files Browse the repository at this point in the history
[fix] #350 코스 생성 시 requestBody에 넣어주는 좌표값 변수명 변경
  • Loading branch information
unam98 authored May 1, 2024
2 parents 1283dc7 + 47174e7 commit 66a7dbd
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ import androidx.annotation.Keep
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Keep
@Serializable
data class UploadLatLng(
@SerialName("lat")
val lat: Double,
@SerialName("long")
val long: Double,
@SerialName("latitude")
val latitude: Double,
@SerialName("longitude")
val longitude: Double
)

0 comments on commit 66a7dbd

Please sign in to comment.