14 lines
438 B
Plaintext
14 lines
438 B
Plaintext
@startuml
|
|
class ProjectDetailsVM {
|
|
}
|
|
class "List`1"<T> {
|
|
}
|
|
ProjectDetailsVM --> "project" Project
|
|
ProjectDetailsVM --> "employeeAllocation<EmployeeAllocation>" "List`1"
|
|
ProjectDetailsVM --> "employees<EmployeeDetails>" "List`1"
|
|
ProjectDetailsVM --> "buildings<Building>" "List`1"
|
|
ProjectDetailsVM --> "floors<Floor>" "List`1"
|
|
ProjectDetailsVM --> "workAreas<WorkArea>" "List`1"
|
|
ProjectDetailsVM --> "workItems<WorkItem>" "List`1"
|
|
@enduml
|