We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d257ab9 commit 505ac4eCopy full SHA for 505ac4e
1 file changed
data/domain/src/main/java/com/ku_stacks/ku_ring/domain/Place.kt
@@ -36,8 +36,18 @@ data class PlaceOperationHours(
36
)
37
38
data class PlaceFacility(
39
+ val id: Long? = null,
40
val name: String,
41
val category: String,
42
val location: String? = null,
43
val operationHours: PlaceOperationHours? = null,
44
+ val imageUrl: String? = null,
45
+ val quantity: Int? = null,
46
+ val externalUrl: String? = null,
47
+)
48
+
49
+data class PlaceCategory(
50
+ val name: String,
51
+ val korName: String,
52
+ val displayOrder: Int,
53
0 commit comments