2024-12-14 16:31:40 +01:00

23 lines
259 B
Swift

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 {
}