13 lines
359 B
Kotlin
13 lines
359 B
Kotlin
package app.closer.domain.model
|
|
|
|
data class Couple(
|
|
val id: String = "",
|
|
val userIds: List<String> = emptyList(),
|
|
val inviteCode: String = "",
|
|
val createdAt: Long = System.currentTimeMillis(),
|
|
val currentQuestionId: String? = null,
|
|
val streakCount: Int = 0,
|
|
val lastAnsweredAt: Long? = null,
|
|
val activePackId: String? = null
|
|
)
|