Files
yusheng-android/BaseModule/src/main/java/com/xscm/moduleutil/bean/GiftWallUserBean.kt
2026-01-23 11:48:44 +08:00

22 lines
441 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.xscm.moduleutil.bean
import java.util.ArrayList
/**
* 项目名称:羽声语音
* 时间2026/1/23 9:59
* 用途:礼物墙用户列表
*/
class GiftWallUserBean {
var count : Int = 0
var users :List<GiftWallUserItemBean> = ArrayList()
class GiftWallUserItemBean {
var avatar : String = ""
var nickname : String = ""
var user_id : String = ""
var count : Int = 0
}
}