1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00
persephone/Persephone/MPDClient/Models/Album.swift
2019-02-13 22:20:25 -05:00

22 lines
348 B
Swift

//
// Album.swift
// Persephone
//
// Created by Daniel Barber on 2019/2/09.
// Copyright © 2019 Dan Barber. All rights reserved.
//
import Foundation
extension MPDClient {
class Album {
let title: String
let artist: String
init(title: String, artist: String) {
self.title = title
self.artist = artist
}
}
}