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

18 lines
331 B
Kotlin
Raw Normal View History

2020-08-29 13:09:54 +00:00
package com.insanusmokrassar.SauceNaoAPI
2019-02-20 12:18:01 +00:00
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
}