59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
16 lines
439 B
Kotlin
16 lines
439 B
Kotlin
package com.voltvoodoo.saplo4j.model
|
|
|
|
import java.io.Serializable
|
|
|
|
public class Language(protected var code: String) : Serializable {
|
|
|
|
public fun equals(other: Language): Boolean {
|
|
return other.toString() == this.toString()
|
|
}
|
|
|
|
default object {
|
|
public var ENGLISH: Language = Language("en")
|
|
public var SWEDISH: Language = Language("sv")
|
|
private val serialVersionUID = -2442762969929206780
|
|
}
|
|
} |