8 lines
168 B
Swift
8 lines
168 B
Swift
import Foundation
|
|
|
|
struct Episode: Identifiable, Codable, Hashable {
|
|
let id: Int
|
|
let name: String // "第01集"
|
|
let url: String // m3u8 地址
|
|
}
|