All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy