Write better labels in stats

This commit is contained in:
fgerber 2024-04-11 15:17:51 +02:00
parent eda8c89b56
commit 82d950873e

View File

@ -1,10 +1,9 @@
package net.helcel.beans.countries
interface GeoLoc {
enum class LocType(val txt: String) {
WORLD("World"), GROUP("Group"), CUSTOM_GROUP("Group"), COUNTRY("Country"), STATE("State");
WORLD("Continents"), GROUP("Groups"), CUSTOM_GROUP("Groups"), COUNTRY("Countries"), STATE("Regions");
}
val code: String
@ -14,5 +13,3 @@ interface GeoLoc {
val type: LocType
val children: Set<GeoLoc>
}