add some comments

This commit is contained in:
Aria Moradi
2021-08-23 21:48:27 +04:30
parent 45a50ca0c1
commit ff4e818e4c

View File

@@ -1,5 +1,7 @@
package suwayomi.tachidesk.manga.model.dataclass package suwayomi.tachidesk.manga.model.dataclass
import eu.kanade.tachiyomi.source.ConfigurableSource
/* /*
* Copyright (C) Contributors to the Suwayomi project * Copyright (C) Contributors to the Suwayomi project
* *
@@ -12,7 +14,13 @@ data class SourceDataClass(
val name: String?, val name: String?,
val lang: String?, val lang: String?,
val iconUrl: String?, val iconUrl: String?,
/** The Source provides a latest listing */
val supportsLatest: Boolean?, val supportsLatest: Boolean?,
/** The Source implements [ConfigurableSource] */
val isConfigurable: Boolean?, val isConfigurable: Boolean?,
/** The Source class has a @Nsfw annotation */
val isNSFW: Boolean?, val isNSFW: Boolean?,
) )