migrate object to data object (#1135)

This commit is contained in:
Benoit Marty 2023-08-24 09:32:44 +02:00
parent 2fadaa9cf5
commit 52853101d9
98 changed files with 314 additions and 357 deletions

View file

@ -166,6 +166,6 @@ sealed interface OneShotNotification {
}
sealed interface SummaryNotification {
object Removed : SummaryNotification
data object Removed : SummaryNotification
data class Update(val notification: Notification) : SummaryNotification
}