1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Model/Player/PlayerQueueItem.swift

14 lines
232 B
Swift
Raw Normal View History

import AVFoundation
import Foundation
struct PlayerQueueItem: Hashable, Identifiable {
var id = UUID()
var video: Video
init(_ video: Video) {
self.video = video
}
var playerItems = [AVPlayerItem]()
}