Compare commits

...

3 Commits

Author SHA1 Message Date
408b0a7259 updated readme to match the datamodel
All checks were successful
Backend CI / Run Maven Tests (pull_request) Successful in 28s
2025-08-07 19:33:14 +03:00
2e9db89ffa feat: added setup maven step to the backend pipeline 2025-08-07 19:30:29 +03:00
e15de89053 feat: removed backend pipeline step for caching m2 2025-08-07 19:30:29 +03:00

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
```