Skip to content

Instantly share code, notes, and snippets.

@snijsure
Created May 18, 2021 19:14
Show Gist options
  • Save snijsure/f3553bcdf65e1ce48bc03eb260494da0 to your computer and use it in GitHub Desktop.
Save snijsure/f3553bcdf65e1ce48bc03eb260494da0 to your computer and use it in GitHub Desktop.
KotlinAttachment
data class KotlinAttachment (
var fileName: String = "default-kotlin-file-name",
var updateTime: String = "1970/1/1"
)
fun ImageFile.toKotlinAttachment(): KotlinAttachment {
return KotlinAttachment().apply {
fileName = imageName
updateTime = updateTime // self-assignment warning
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment