yattee/Model/Channel.swift
2021-06-28 17:03:22 +02:00

13 lines
258 B
Swift

import AVFoundation
import Defaults
import Foundation
struct Channel: Codable, Defaults.Serializable {
var id: String
var name: String
static func from(video: Video) -> Channel {
Channel(id: video.channelID, name: video.author)
}
}