e4a172946b
#KT-3368 Fixed
10 lines
101 B
Kotlin
10 lines
101 B
Kotlin
enum class Color {
|
|
WHITE
|
|
BLACK
|
|
RED
|
|
YELLOW
|
|
BLUE
|
|
override fun toString() : String? {
|
|
return "COLOR"
|
|
}
|
|
} |