mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
11 lines
227 B
Swift
11 lines
227 B
Swift
import Foundation
|
|
|
|
struct ChannelPlaylist: Identifiable {
|
|
var id: String = UUID().uuidString
|
|
var title: String
|
|
var thumbnailURL: URL?
|
|
var channel: Channel?
|
|
var videos = [Video]()
|
|
var videosCount: Int?
|
|
}
|