Rework content commands, add audio player

This commit is contained in:
Christoph Hagen
2024-12-14 16:31:40 +01:00
parent b3b8c9a610
commit be2aab2ea8
52 changed files with 1758 additions and 767 deletions

View File

@@ -0,0 +1,22 @@
struct Song {
let name: String
let artist: String
let album: String
let track: Int
/// The file id of the audio file
let file: String
/// The file id of the cover image
let cover: String
}
extension Song: Codable {
}