chore: More domain module Manga prep

This commit is contained in:
Ahmad Ansori Palembani 2024-06-18 19:53:22 +07:00
parent f94e69cdf8
commit de48b52ec3
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
6 changed files with 39 additions and 7 deletions

View file

@ -9,11 +9,11 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(projects.sourceApi)
}
}
val androidMain by getting {
dependencies {
implementation(projects.sourceApi)
}
}
}

View file

@ -10,7 +10,7 @@ data class Manga(
val artist: String?,
val author: String?,
val description: String?,
val genre: String?,
val genres: List<String>?,
val status: Int,
val thumbnailUrl: String?,
val updateStrategy: UpdateStrategy,