Remove nennung-feature (domain models, DI modules, and UI components).

This commit is contained in:
2026-04-11 13:04:20 +02:00
parent 84128432e3
commit eda18a8ff2
22 changed files with 435 additions and 60 deletions
@@ -0,0 +1,12 @@
package at.mocode.frontend.features.veranstalter.domain
data class Veranstalter(
val id: String,
val name: String,
val verein: String? = null,
val adresse: String? = null,
val email: String? = null,
val telefon: String? = null,
val znsId: String? = null,
val oepsNummer: String? = null
)