feat: implement favorites functionality with SoundCard integration and FavoritesService

This commit is contained in:
JSC
2025-08-16 21:16:13 +02:00
parent ecb17e9f94
commit 2e41d5b695
5 changed files with 228 additions and 16 deletions

View File

@@ -17,6 +17,8 @@ export interface Sound {
thumbnail?: string
is_music: boolean
is_deletable: boolean
is_favorited: boolean
favorite_count: number
created_at: string
updated_at: string
}