16 lines
374 B
Kotlin

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
)