Files
suwayomi-material-you-webui/server/src/main/kotlin/suwayomi/tachidesk/model/dataclass/ExtensionDataClass.kt

25 lines
629 B
Kotlin
Raw Normal View History

2021-05-27 01:55:21 +04:30
package suwayomi.tachidesk.model.dataclass
2020-12-25 13:00:18 +03:30
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
2021-01-26 23:32:12 +03:30
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
2020-12-25 13:00:18 +03:30
data class ExtensionDataClass(
2021-01-22 12:34:03 +03:30
val apkName: String,
val iconUrl: String,
2021-04-03 19:47:31 +04:30
val name: String,
val pkgName: String,
val versionName: String,
val versionCode: Int,
val lang: String,
val isNsfw: Boolean,
2021-03-29 02:47:51 +04:30
val installed: Boolean,
val hasUpdate: Boolean,
2021-03-29 02:47:51 +04:30
val obsolete: Boolean,
2021-01-22 12:34:03 +03:30
)