SauceNaoAPI/src/commonMain/kotlin/dev/inmo/SauceNaoAPI/OutputType.kt
2020-12-02 14:32:26 +06:00

18 lines
382 B
Kotlin

package dev.inmo.SauceNaoAPI
sealed class OutputType {
abstract val typeCode: Int
}
object HtmlOutputType : dev.inmo.SauceNaoAPI.OutputType() {
override val typeCode: Int = 0
}
object XmlOutputType : dev.inmo.SauceNaoAPI.OutputType() {
override val typeCode: Int = 1
}
object JsonOutputType : dev.inmo.SauceNaoAPI.OutputType() {
override val typeCode: Int = 2
}