diff --git a/core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.java b/core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.kt similarity index 77% rename from core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.java rename to core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.kt index 7b53722fa..0f49a4a2b 100644 --- a/core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.java +++ b/core/src/main/java/org/kiwix/kiwixmobile/core/data/local/entity/NetworkLanguageSpec.kt @@ -15,14 +15,13 @@ * along with this program. If not, see . * */ +package org.kiwix.kiwixmobile.core.data.local.entity -package org.kiwix.kiwixmobile.core.data.local.entity; - -import com.yahoo.squidb.annotations.TableModelSpec; +import com.yahoo.squidb.annotations.TableModelSpec @TableModelSpec(className = "NetworkLanguageDatabaseEntity", tableName = "networkLanguages") -public class NetworkLanguageSpec { - public String languageISO3; - public boolean enabled; - public int numberOfOccurences; +class NetworkLanguageSpec { + var languageISO3: String? = null + var enabled = false + var numberOfOccurences = 0 }