moved old uml.md to archive folder
This commit is contained in:
26
docs/archive/uml.md
Normal file
26
docs/archive/uml.md
Normal 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.
|
Reference in New Issue
Block a user