Skip to content

Commit

Permalink
[feat/#135] RequestReviewFriend
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Feb 13, 2024
1 parent 7819c93 commit a075600
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.teumteum.data.model.request

import com.teumteum.domain.entity.ReviewFriend
import kotlinx.serialization.Serializable

@Serializable
data class RequestReviewFriend(
val id: Long,
val review: String
)

fun ReviewFriend.toRequestReviewFriend(): RequestReviewFriend {
return RequestReviewFriend(id, review)
}

0 comments on commit a075600

Please sign in to comment.