From c847ae2fe67b66508d57ef5acd695d3e86cfef8d Mon Sep 17 00:00:00 2001 From: pricelees Date: Sat, 27 Sep 2025 15:08:57 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=85=8C=EB=A7=88=20=EC=9E=90=EC=B2=B4?= =?UTF-8?q?=EC=9D=98=20=EC=A0=95=EB=B3=B4=EB=A7=8C=20=EB=8B=B4=EA=B3=A0=20?= =?UTF-8?q?=EC=9E=88=EB=8A=94=20=EB=B3=84=EB=8F=84=EC=9D=98=20=EB=8F=84?= =?UTF-8?q?=EB=A9=94=EC=9D=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../roomescape/theme/business/domain/ThemeInfo.kt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main/kotlin/roomescape/theme/business/domain/ThemeInfo.kt diff --git a/src/main/kotlin/roomescape/theme/business/domain/ThemeInfo.kt b/src/main/kotlin/roomescape/theme/business/domain/ThemeInfo.kt new file mode 100644 index 00000000..9406f6b4 --- /dev/null +++ b/src/main/kotlin/roomescape/theme/business/domain/ThemeInfo.kt @@ -0,0 +1,15 @@ +package roomescape.theme.business.domain + +class ThemeInfo( + val id: Long, + val name: String, + val description: String, + val difficulty: String, + val thumbnailUrl: String, + val price: Int, + val minParticipants: Short, + val maxParticipants: Short, + val availableMinutes: Short, + val expectedMinutesFrom: Short, + val expectedMinutesTo: Short +)