Skip to content

Commit

Permalink
fix: ArtistResponse ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyCh0 committed Mar 18, 2024
1 parent bacbfd7 commit c39f272
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import kotlinx.serialization.Serializable
data class ArtistResponse(
val id: Long,
val name: String,
val imageUrl: String,
val profileImage: String,
) {
fun toDomain() = Artist(
id = id,
name = name,
imageUrl = imageUrl,
imageUrl = profileImage,
)
}

0 comments on commit c39f272

Please sign in to comment.