mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
12 lines
228 B
Kotlin
12 lines
228 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import androidx.room.ColumnInfo
|
|
import androidx.room.Entity
|
|
|
|
@Entity
|
|
class CustomInstance(
|
|
@ColumnInfo var name: String = "",
|
|
var apiUrl: String = "",
|
|
var frontendUrl: String = ""
|
|
)
|