12 lines
275 B
Kotlin
12 lines
275 B
Kotlin
package melody.offline.music.playernew
|
|
|
|
import android.annotation.SuppressLint
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@SuppressLint("UnsafeOptInUsageError")
|
|
@Serializable
|
|
data class YouTubeLocale(
|
|
val gl: String, // geolocation
|
|
val hl: String, // host language
|
|
)
|