mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +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
|
||
|
)
|