impl ui logic

This commit is contained in:
Shcherbatykh Oleg
2026-02-24 15:19:20 +03:00
parent 97c9091038
commit cff73f0f35
19 changed files with 696 additions and 397 deletions

View File

@@ -13,6 +13,5 @@ sealed interface DataResult<out T> {
val cause: Throwable? = null
) : DataResult<T>
/** Состояние загрузки */
data object Loading : DataResult<Nothing>
}