All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ru.casperix.file_data.FileData.kt Maven / Gradle / Ivy

The newest version!
package ru.casperix.file_data

class FileData {
    val pageList = mutableListOf()
}

class PageData {
    val blockList = mutableListOf()
}

class BlockData(val name: String) {
    val values = mutableMapOf()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy