docs: add class diagram for core entities in C4 architecture

- Created `class_diagram_core.drawio` to visualize core domain entities (`Veranstaltung`, `Platz`, `Turnier`, etc.).
- Included relationships and associations between entities such as 1:N and reference mappings.
- Structured diagram to align with Clean Architecture principles for better domain comprehension.
This commit is contained in:
2026-04-09 09:24:32 +02:00
parent d7095bef47
commit f8662e973e
3 changed files with 34 additions and 4 deletions
@@ -524,3 +524,15 @@ enum class PlatzTypE {
/** Sonstige Fläche */
SONSTIGE
}
/**
* Reglement, dem das Turnier unterliegt.
*/
@Serializable
enum class ReglementE {
/** Nationales Reglement (ÖTO) */
OETO,
/** Internationales Reglement (FEI) */
FEI
}