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

commonMain.dev.fritz2.components.data.file.kt Maven / Gradle / Ivy

There is a newer version: 0.14.6
Show newest version
package dev.fritz2.components.data

/**
 *
 * @author Jan Weidenhaupt
 * 09.02.2021
 */
open class File(val name: String, val type: String, val size: Long, val content: String) {
    override fun toString(): String = "File(name=$name, type=$type, size=$size, content: $content)"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy