From 5f546f87da43c75d2f4fbe5f511dfc017e506965 Mon Sep 17 00:00:00 2001 From: pricelees Date: Thu, 18 Sep 2025 20:04:01 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=AF=B8=EC=82=AC=EC=9A=A9=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/roomescape/store/web/StoreDTO.kt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/kotlin/roomescape/store/web/StoreDTO.kt b/src/main/kotlin/roomescape/store/web/StoreDTO.kt index aad2cd14..cad9201e 100644 --- a/src/main/kotlin/roomescape/store/web/StoreDTO.kt +++ b/src/main/kotlin/roomescape/store/web/StoreDTO.kt @@ -30,11 +30,3 @@ fun StoreEntity.toInfoResponse() = StoreInfoResponse( contact = this.contact, businessRegNum = this.businessRegNum ) - -data class StoreInfoListResponse( - val stores: List -) - -fun List.toInfoListResponse() = StoreInfoListResponse( - stores = this.map { it.toInfoResponse() } -)