Skip to content

Commit

Permalink
#7 Feature: ResponseDto
Browse files Browse the repository at this point in the history
  • Loading branch information
0se0 committed Nov 14, 2024
1 parent b1af6ba commit ba387b5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/src/main/java/org/sopt/and/network/response/ResponseDto.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.sopt.and.network.response

import kotlinx.serialization.Serializable

@Serializable
data class ResponseDto(
val result: Result? = null,
val code: String? = null
) {
@Serializable
data class Result(
val no: Int? = null,
val token: String? = null
)
}

0 comments on commit ba387b5

Please sign in to comment.