This commit is contained in:
Rafal Wisniewski
2026-03-19 21:02:10 +01:00
parent b074c98f7d
commit f625a6975c
13 changed files with 408 additions and 123 deletions

View File

@@ -0,0 +1,16 @@
package cc.n0th1ng.tripmoney.utils
enum class Currencies {
PLN,
EUR,
USD;
companion object {
fun default(): Currencies {
return PLN
}
fun names(): List<String> {
return Currencies.entries.map { it.name }
}
}
}