moved old uml.md to archive folder

This commit is contained in:
Derek Tan
2024-07-14 01:16:51 -04:00
parent f0aa564e08
commit 82762e8701

26
docs/archive/uml.md Normal file
View File

@ -0,0 +1,26 @@
# UML Model
## Class Diagram
<!----
```plantuml
@startuml
class User {
- id: int
- name: string
- email: string
- password: string
+ getId(): int
+ getName(): string
+ getEmail(): string
+ getPassword(): string
+ setId(id: int): void
+ setName(name: string): void
+ setEmail(email: string): void
+ setPassword(password: string): void
}
@enduml
```
-->
Please see UML generated by Mermaid Chart as official documentation.