mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
- Remove music dir prefs + Add refresh album art option to album list context menu + Wire up album view context menu + Force an idle after transport commands + Add "clear cache" button
16 lines
284 B
Swift
16 lines
284 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 album: String
|
|
var uri: String
|
|
}
|