mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +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?
|
||
|
}
|