1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00
persephone/Persephone/Models/DraggedAlbum.swift

20 lines
321 B
Swift

//
// DraggedAlbum.swift
// Persephone
//
// Created by Daniel Barber on 2019/6/28.
// Copyright © 2019 Dan Barber. All rights reserved.
//
import AppKit
import CryptoSwift
struct DraggedAlbum: Codable {
var title: String
var artist: String
var hash: String {
return "\(title) - \(artist)".sha1()
}
}