com.lightningkite.lightningserver.files.FileInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-core Show documentation
Show all versions of server-core Show documentation
A set of tools to fill in/replace what Ktor is lacking in.
The newest version!
package com.lightningkite.lightningserver.files
import com.lightningkite.lightningserver.core.ContentType
import java.time.Instant
/**
* Holds common information about files.
*/
data class FileInfo(
val type: ContentType,
val size: Long,
val lastModified: Instant
)