48 lines
329 B
Markdown
48 lines
329 B
Markdown
# Models
|
|
|
|
## User
|
|
- id
|
|
- email
|
|
- username
|
|
- themeMode
|
|
- primaryColor
|
|
- language
|
|
|
|
---
|
|
|
|
## Song
|
|
- id
|
|
- title
|
|
- artist
|
|
- url
|
|
- coverUrl
|
|
- genre
|
|
- mood
|
|
- duration
|
|
|
|
---
|
|
|
|
## Playlist
|
|
- id
|
|
- name
|
|
- userId
|
|
- songs[]
|
|
|
|
---
|
|
|
|
## Message
|
|
- id
|
|
- chatId
|
|
- senderId
|
|
- text
|
|
- songId
|
|
- timestamp
|
|
|
|
---
|
|
|
|
## Chat
|
|
- id
|
|
- participants[]
|
|
- lastMessage
|
|
|