lmw
2024-11-26 b8d8f9b855fdd453d06d78d2565f091db208ec8e
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