Skip to content

Commit

Permalink
Feature #38: BaseResponseWithoutDataDto
Browse files Browse the repository at this point in the history
  • Loading branch information
0se0 committed Jun 26, 2024
1 parent b148e98 commit 61c235a
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.sopt.now.compose.data.remote.response

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

@Serializable
data class BaseResponseWithoutDataDto(
@SerialName("code")
val code: Int,
@SerialName("message")
val message: String,
)

0 comments on commit 61c235a

Please sign in to comment.