mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
* Add cover art for each track * Stack song title and artist * Add song duration * Redesign the dragged image view to match
15 lines
269 B
Swift
15 lines
269 B
Swift
//
|
|
// DraggedSong.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/6/21.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
struct DraggedSong: Codable {
|
|
var type: DraggedSongType
|
|
var title: String?
|
|
var artist: String?
|
|
var cover: String?
|
|
}
|