lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.sinata.xqmuse.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
 
@Parcelize
data class TrainInfo(
    val allTime: Long,
    val beforeTime: Long,
    val beforeVideoId: String,
    val courseVideo: String,
    val coverImg: String,
    val position: String,
    val realTime: Int,
    val time: Int,
    val videoName: String,
    val videos: List<VideoBean>
):Parcelable