Created
June 14, 2023 09:38
-
-
Save Aldikitta/ed2c3cd73eccdadcd8839c779cee44ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed interface VisitingDetailUiState { | |
object Loading : VisitingDetailUiState | |
data class Error(val error: String) : VisitingDetailUiState | |
data class Success( | |
val agentVisitingDetail: GetAgentDetailResponse? = null | |
) : VisitingDetailUiState | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment