From a2f68affb786724406a471acf908963e22644628 Mon Sep 17 00:00:00 2001 From: Emre KARTAL Date: Tue, 21 Mar 2023 08:44:22 +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 | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7845061..39e24c0 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ skinparam package { hide circle class Contract { - -start: Date - -until: Date + -start: Calendar + -until: Calendar +duration() : Int } @@ -61,7 +61,7 @@ abstract class Personne { -firstName: String -lastName: String -name: String - -dateOfBirth: Date + -dateOfBirth: Calendar -nationality: String } @@ -107,8 +107,8 @@ class Competition { class Season { -id: Int - -startDate: Date - -endDate: Date + -startDate: Calendar + -endDate: Calendar -currentMatchday: Int -winner: Int } @@ -116,6 +116,7 @@ class Season { class Match { -id: Int -idHomeTeam: Int + -score: Score -idAwayTeam: Int -status: String }