This commit is contained in:
MDeghaud67
2023-05-09 11:38:55 +02:00
parent b995e34426
commit a250d5de8f
72 changed files with 549 additions and 573 deletions

29
API/docs/diagram.wsd Normal file
View File

@ -0,0 +1,29 @@
@startuml diagram
class users {
id: text
username: text
email: email
name: text
image: file
created: date
updated: date
}
class trashs{
id: text
value: text
author: users
created: date
updated: date
}
class data {
id: text
value: number
poubelle_id: trashs
unit: text
status: bool
created: date
updated: date
}
users "1" <-- trashs
trashs "1" <-- data
@enduml