Improve readability of event code

This commit is contained in:
Ehren Kret 2022-08-26 16:51:10 -05:00
parent abd0f9630c
commit 132f026c75
1 changed files with 9 additions and 1 deletions

View File

@ -11,4 +11,12 @@ import kotlinx.serialization.Serializable
sealed interface Event
@Serializable
data class RemoteConfigSetEvent(val token: String, val name: String, val percentage: Int, val defaultValue: String? = null, val value: String? = null, val hashKey: String? = null, val uuids: Collection<String> = Collections.emptyList()) : Event
data class RemoteConfigSetEvent(
val token: String,
val name: String,
val percentage: Int,
val defaultValue: String? = null,
val value: String? = null,
val hashKey: String? = null,
val uuids: Collection<String> = Collections.emptyList()
) : Event