Updated datamodel picture in the readme #6

Merged
jarno merged 3 commits from feat/readme-datamodel into main 2025-08-07 16:36:08 +00:00
Showing only changes of commit 408b0a7259 - Show all commits

View File

@@ -5,10 +5,28 @@
```mermaid
classDiagram
class Activity {
+Long id
+String name
+Location location
+Int priceRange
+Integer priceRange
+List~String~ tags
+String description
+LocalDateTime createdAt
+LocalDateTime updatedAt
}
class Location {
+Long id
+String name
+String address
+String city
+String country
+String postalCode
+Double latitude
+Double longitude
+LocalDateTime createdAt
+LocalDateTime updatedAt
}
Activity <-- Location : belongs to
```