mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
16 lines
431 B
Kotlin
16 lines
431 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Instances(
|
|
var name: String? = null,
|
|
var api_url: String? = null,
|
|
var locations: String? = null,
|
|
var version: String? = null,
|
|
var up_to_date: Boolean? = null,
|
|
var cdn: Boolean? = null,
|
|
var registered: Long? = null,
|
|
var last_checked: Long? = null
|
|
)
|