All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.cssxsh.bilibili.data.dynamic.WebSource.kt Maven / Gradle / Ivy

The newest version!
package xyz.cssxsh.bilibili.data.dynamic

import kotlinx.serialization.*

@Serializable
data class WebSource(
    @SerialName("local")
    val local: Int? = null,
    @SerialName("placeholder")
    val placeholder: Int? = null,
    @SerialName("remote")
    val remote: Remote? = null,
    @SerialName("src_type")
    val type: Int = 0
) {
    @Serializable
    data class Remote(
        @SerialName("bfs_style")
        val bfsStyle: String = "",
        @SerialName("url")
        val url: String = ""
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy