Runt
2025-05-18 ff59eb9415d3df520df98e14ef66d9a3d9804c5b
1
2
3
4
5
6
7
8
9
10
11
package com.runt.open.mvi.data
 
/**
 * @author Runt(qingingrunt2010@qq.com)
 * @purpose
 * @date 5/18/25
 */
data class LoadingState(
    val isVisible: Boolean = false,
    val message: String = "加载中...",
)