main.com.sceyt.chatuikit.data.models.channels.GetAllChannelsResponse.kt Maven / Gradle / Ivy
package com.sceyt.chatuikit.data.models.channels
import com.sceyt.chat.models.SceytException
sealed class GetAllChannelsResponse {
data object SuccessfullyFinished : GetAllChannelsResponse()
data class Proportion(val channels: List) : GetAllChannelsResponse()
data class Error(val error: SceytException?) : GetAllChannelsResponse()
}