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 +)