mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 05:40:32 +05:30
14 lines
232 B
Swift
14 lines
232 B
Swift
import AVFoundation
|
|
import Foundation
|
|
|
|
struct PlayerQueueItem: Hashable, Identifiable {
|
|
var id = UUID()
|
|
var video: Video
|
|
|
|
init(_ video: Video) {
|
|
self.video = video
|
|
}
|
|
|
|
var playerItems = [AVPlayerItem]()
|
|
}
|