From 2d138ff32561d6184092d69a0fdf6ddf5c8d71ff Mon Sep 17 00:00:00 2001 From: pricelees Date: Mon, 15 Sep 2025 15:50:44 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=A7=80=EC=97=AD=20=EC=BD=94=EB=93=9C?= =?UTF-8?q?=20+=20=EC=9D=B4=EB=A6=84=EC=9D=B4=20=EB=8B=B4=EA=B8=B4=20?= =?UTF-8?q?=EC=83=88=EB=A1=9C=EC=9A=B4=20DTO=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/roomescape/region/web/RegionDTO.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/kotlin/roomescape/region/web/RegionDTO.kt b/src/main/kotlin/roomescape/region/web/RegionDTO.kt index 3046e1cb..dee2523a 100644 --- a/src/main/kotlin/roomescape/region/web/RegionDTO.kt +++ b/src/main/kotlin/roomescape/region/web/RegionDTO.kt @@ -21,3 +21,9 @@ data class SigunguListResponse( data class RegionCodeResponse( val code: String ) + +data class RegionInfoResponse( + val code: String, + val sidoName: String, + val sigunguName: String, +)