Make NotificationTroubleshootTestState.Status stable
This commit is contained in:
parent
8987949704
commit
417918feed
1 changed files with 3 additions and 0 deletions
|
|
@ -7,11 +7,14 @@
|
||||||
|
|
||||||
package io.element.android.libraries.troubleshoot.api.test
|
package io.element.android.libraries.troubleshoot.api.test
|
||||||
|
|
||||||
|
import androidx.compose.runtime.Immutable
|
||||||
|
|
||||||
data class NotificationTroubleshootTestState(
|
data class NotificationTroubleshootTestState(
|
||||||
val name: String,
|
val name: String,
|
||||||
val description: String,
|
val description: String,
|
||||||
val status: Status,
|
val status: Status,
|
||||||
) {
|
) {
|
||||||
|
@Immutable
|
||||||
sealed interface Status {
|
sealed interface Status {
|
||||||
data class Idle(val visible: Boolean) : Status
|
data class Idle(val visible: Boolean) : Status
|
||||||
data object InProgress : Status
|
data object InProgress : Status
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue