Change PollType association

This commit is contained in:
Debucquoy Anthony 2023-12-14 14:06:41 +01:00
parent 2698ca580b
commit 6a6428231d
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

View File

@ -40,6 +40,7 @@ package Forums {
}
class Poll{
options: ArrayList<Option>
type: PollType
answer(User, Option): Vote
addOption(Option)
}
@ -63,7 +64,7 @@ package Forums {
Option "1..*" -d-x Vote
Poll *-- Vote
Poll .. PollType
Poll -- PollType
PollType .r. N
}