Let Kotlin generate the overloaded constructors for Java
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / text / PlainTextPart.kt
1 package net.pterodactylus.sone.text
2
3 /**
4  * [Part] implementation that holds a single piece of text.
5  *
6  * @author [David Roden](mailto:d.roden@emetriq.com)
7  */
8 data class PlainTextPart(override val text: String) : Part