@Indexed 추가

This commit is contained in:
Klaus 2024-02-23 16:31:57 +09:00
parent c097cb54f1
commit 0e9863050f
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ data class NewRoulette(
@Indexed
val creatorId: Long,
var can: Int,
@Indexed
var isActive: Boolean,
var items: List<RouletteItem> = mutableListOf()
)