From 7ff991b4fb7b058c246dadfc697f62715bfcea86 Mon Sep 17 00:00:00 2001 From: Emre KARTAL Date: Tue, 21 Mar 2023 08:35:14 +0100 Subject: [PATCH] =?UTF-8?q?Add=20class=20score=20in=20uml=20diagram=20?= =?UTF-8?q?=F0=9F=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 440d7b0..7845061 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,11 @@ class Match { -idHomeTeam: Int -idAwayTeam: Int -status: String +} + +class Score { + -home: Int + -away: Int -winner: String } @@ -135,6 +140,8 @@ Team --> "-area" Area Competition --> "-area" Area Competition --> "-currentSeason" Season +Match --> "-score" Score + @enduml ```