Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensolleder committed Apr 19, 2022
1 parent cb533c5 commit ed4946b
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,31 @@ It is written in PHP 7.3 and above. HofUniversityCanteenAPI is not supported nor
<br>

## Data structure
<img src="https://github.com/stevensolleder/HofUniversityCanteenAPI/blob/main/screenshots/datastructure.png" width="25%" img><br><br>
```mermaid
classDiagram
Week "1" -- "n" Day
Day "1" -- "n" Dish
class Week{
+array days
}
class Day{
+string name
+DateTime date
+array mainCourses
+array sideDishes
+array desserts
+array salads
}
class Dish{
+string name
+array attributes
+double collegeStudentPrice
}
```
<br>

## Functions
Just copy the "HofUniversityCanteenAPI"-folder in your project and import the the used functions:
Expand Down

0 comments on commit ed4946b

Please sign in to comment.