7f627ab480
These are mostly mechanical changes.
7 lines
126 B
Kotlin
Vendored
7 lines
126 B
Kotlin
Vendored
enum class Style(val value: String?) {
|
|
SYSTEM("system"),
|
|
USER("user"),
|
|
INTERNAL("internal"),
|
|
UNKNOWN(null);
|
|
}
|