commonMain.dev.fritz2.components.data.file.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of components-jvm Show documentation
Show all versions of components-jvm Show documentation
Easily build reactive web-apps in Kotlin based on flows and coroutines
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)"
}