Skip to content

Commit

Permalink
#10 [FIX] BaseResponse 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yihwanggeun committed Dec 6, 2024
1 parent c07ecb4 commit afb7302
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/org/sopt/and/core/data/dto/BaseResponse.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.sopt.and.core.data.dto

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class BaseResponse <T> (
val status: Int,
val message: String,
val data: T? = null
@SerialName("result")
val result: T
)

0 comments on commit afb7302

Please sign in to comment.