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