moved uml.md to docs/archive/

This commit is contained in:
Derek Tan
2024-07-14 01:27:57 -04:00
parent ca3481028e
commit b183fcec7f

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

@ -0,0 +1,27 @@
# 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
```
-->
Archived. Please see new UML diagram uploaded in chats. Thanks!