init: init proj

This commit is contained in:
2026-02-26 22:15:35 +08:00
commit 7ef5348f65
43 changed files with 3085 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import Foundation
struct StreamSource: Identifiable, Codable {
let id: Int
let name: String // " 1"
let quality: String // "1080P"
let episodes: [Episode]
}