mirror of
https://github.com/yattee/yattee.git
synced 2024-11-14 01:58:24 +00:00
8 lines
167 B
Swift
8 lines
167 B
Swift
|
import Foundation
|
||
|
|
||
|
extension Playlist {
|
||
|
static var fixture: Playlist {
|
||
|
Playlist(id: "ABC", title: "The Playlist", visibility: .public, updated: 1)
|
||
|
}
|
||
|
}
|