Skip to content

Commit 8ed290e

Browse files
committed
📝 SearchRecyclablesResponseDto 에 recycleMethod 필드 추가
1 parent fec1e88 commit 8ed290e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/kotlin/andreas311/miso/domain/recyclables/presentation/data/response/SearchRecyclablesResponseDto.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ import andreas311.miso.domain.recyclables.enums.RecyclablesType
66
data class SearchRecyclablesResponseDto(
77
val title: String,
88
val imageUrl: String,
9+
val recycleMethod: String,
910
val recyclablesType: RecyclablesType
1011
) {
1112
constructor(recyclables: Recyclables) : this(
1213
title = recyclables.title,
1314
imageUrl = recyclables.imageUrl,
15+
recycleMethod = recyclables.recycleMethod,
1416
recyclablesType = recyclables.recyclablesType
1517
)
1618
}

0 commit comments

Comments
 (0)