
# Mapper 존재에 대한 의문 회사에서 단독으로 클린 아키텍처[로 프로젝트를 진행할때 제일 많이 했더 실수가 고귀한 Domain에 Serialzable 즉 DTO를 적용했던 것이였다. import com.google.gson.annotations.SerializedNameimport java.io.Serializabledata class UserResponse( @SerializedName("id") val id: Int, @SerializedName("name") val name: String, @SerializedName("email") val email: String) : Serializable 이걸 Domain에 넣고, 클린 아키텍쳐라고 구현하고 있으니 나중에 ..