yattee/Model/ChannelPlaylist.swift

11 lines
227 B
Swift
Raw Normal View History

2021-10-22 23:04:03 +00:00
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?
}