@Keep 어노테이션을 추가하여 난독화에서 제외되도록 수정
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
package kr.co.vividnext.sodalive.following
|
||||
|
||||
import androidx.annotation.Keep
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
@Keep
|
||||
data class GetCreatorFollowingAllListResponse(
|
||||
@SerializedName("totalCount") val totalCount: Int,
|
||||
@SerializedName("items") val items: List<GetCreatorFollowingAllListItem>
|
||||
)
|
||||
|
||||
@Keep
|
||||
data class GetCreatorFollowingAllListItem(
|
||||
@SerializedName("creatorId") val creatorId: Long,
|
||||
@SerializedName("nickname") val nickname: String,
|
||||
|
||||
Reference in New Issue
Block a user