@SerializedName 추가

This commit is contained in:
2023-09-09 01:55:14 +09:00
parent dc028f297d
commit d791147886

View File

@@ -1,7 +1,9 @@
package kr.co.vividnext.sodalive.audio_content.comment package kr.co.vividnext.sodalive.audio_content.comment
import com.google.gson.annotations.SerializedName
data class ModifyCommentRequest( data class ModifyCommentRequest(
val commentId: Long, @SerializedName("commentId") val commentId: Long,
var comment: String? = null, @SerializedName("comment") var comment: String? = null,
var isActive: Boolean? = null @SerializedName("isActive") var isActive: Boolean? = null
) )