chore: erweitere Datenmodelle um Nation und Bundesland, verbessere UI im Profil- und Veranstaltungs-Wizard

Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
2026-04-21 13:56:04 +02:00
parent 2662d4e82e
commit f13c2eb35b
8 changed files with 45 additions and 12 deletions
@@ -32,6 +32,8 @@ data class ZnsRemoteReiter(
val vorname: String,
val lizenz: String?,
val lizenzKlasse: String,
val nation: String? = "AUT",
val bundesland: String? = null,
)
data class ZnsRemotePferd(
@@ -48,6 +50,8 @@ data class ZnsRemoteFunktionaer(
val satzNummer: Int,
val name: String?,
val qualifikationen: List<String>,
val nation: String? = "AUT",
val bundesland: String? = null,
)
interface ZnsImportProvider {