- made storyboard and module folder - create ui for listing of karaoke - added api for karaoke list, with data model - made ui dynamic for karaoke listing - Matched the continue watching data with the karaoke listing and decreased code - made custom player view for karaoke - added timer to show hide controls in player
20 lines
372 B
Swift
20 lines
372 B
Swift
//
|
|
// KaraokeContinueWatchingDM.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 05/07/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// MARK: - KaraokeListingDM
|
|
struct KaraokeContinueWatchingDM: Codable {
|
|
let result: [KaraokeListingDM.KaraokeDatum]?
|
|
let totalRecords: Int?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case result
|
|
case totalRecords = "total_records"
|
|
}
|
|
}
|