mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
10 lines
194 B
Kotlin
10 lines
194 B
Kotlin
package com.github.libretube.obj
|
|
|
|
data class PreviewFrame(
|
|
val previewUrl: String,
|
|
val positionX: Int,
|
|
val positionY: Int,
|
|
val framesPerPageX: Int,
|
|
val framesPerPageY: Int
|
|
)
|