Files
Woka_Native_iOS/WOKA/Karaoke/Model/KaraokeContinueWatchingDM.swift
Bilal b405c17a7a - started working on karaoke
- 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
2024-07-05 19:24:20 +05:30

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"
}
}