Skip to content

Commit b1645f8

Browse files
committed
[BOOK-260] chore: model 모듈내 누락된 stable 어노테이션 추가
1 parent 3720fca commit b1645f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/model/src/main/kotlin/com/ninecraft/booket/core/model/BookUpsertModel.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package com.ninecraft.booket.core.model
22

3-
import androidx.compose.runtime.Stable
4-
5-
@Stable
63
data class BookUpsertModel(
74
val userBookId: String,
85
val userId: String,

core/model/src/main/kotlin/com/ninecraft/booket/core/model/ReadingRecordsModel.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package com.ninecraft.booket.core.model
22

3+
import androidx.compose.runtime.Stable
4+
35
data class ReadingRecordsModel(
46
val lastPage: Boolean = true,
57
val totalResults: Int = 0,
@@ -8,6 +10,7 @@ data class ReadingRecordsModel(
810
val readingRecords: List<ReadingRecordModel> = emptyList(),
911
)
1012

13+
@Stable
1114
data class ReadingRecordModel(
1215
val id: String = "",
1316
val userBookId: String = "",

0 commit comments

Comments
 (0)