SauceNaoAPI/src/commonMain/kotlin/com/insanusmokrassar/SauceNaoAPI/OutputType.kt

18 lines
331 B
Kotlin

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