You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
504 B
38 lines
504 B
1 year ago
|
'Created with https://www.planttext.com/
|
||
|
|
||
|
@startuml
|
||
|
|
||
|
skin rose
|
||
|
|
||
|
title Internal data model
|
||
|
|
||
|
class User {
|
||
|
name
|
||
|
email
|
||
|
password
|
||
|
roles
|
||
|
availableTimes
|
||
|
}
|
||
|
|
||
|
class Visit {
|
||
|
studentInfo
|
||
|
otherVisitors
|
||
|
hometown
|
||
|
day
|
||
|
possibleTimes
|
||
|
decidedTime
|
||
|
status
|
||
|
notes
|
||
|
notificationFrequency
|
||
|
}
|
||
|
|
||
|
class Committment {
|
||
|
level
|
||
|
}
|
||
|
|
||
|
Visit "*\ndecided guide →" -right- "0..1\n← visits" User : " "
|
||
|
Visit " 1" -up- "*" Committment
|
||
|
User "1" -up- "*" Committment
|
||
|
|
||
|
@enduml
|